Add Label for ZIP and make desc not required

This commit is contained in:
Jannis Portmann 2021-05-19 13:25:48 +02:00
parent a3bd73abd1
commit 774acebf79
2 changed files with 38 additions and 2 deletions

View file

@ -0,0 +1,31 @@
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20210519090349 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE offering ALTER COLUMN description DROP NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
}
}

View file

@ -5,6 +5,7 @@ namespace App\Form;
use App\Entity\Offering;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\FileType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
@ -16,8 +17,12 @@ class OfferingFormType extends AbstractType
{
$builder
->add('title')
->add('zipCode')
->add('description')
->add('zipCode', TextType::class, [
'label' => 'ZIP',
])
->add('description', null, [
'required' => false,
])
->add('photo', FileType::class, [
'required' => false,
'mapped' => false,