Setup PLZ field for user
This commit is contained in:
parent
4140b63da0
commit
853b570f0f
5 changed files with 61 additions and 1 deletions
34
migrations/Version20210614104026.php
Normal file
34
migrations/Version20210614104026.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?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 Version20210614104026 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 description SET NOT NULL');
|
||||
$this->addSql('ALTER TABLE "user" ADD zip_code INT DEFAULT NULL');
|
||||
}
|
||||
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
// this down() migration is auto-generated, please modify it to your needs
|
||||
$this->addSql('CREATE SCHEMA public');
|
||||
$this->addSql('ALTER TABLE "user" DROP zip_code');
|
||||
$this->addSql('ALTER TABLE offering ALTER description DROP NOT NULL');
|
||||
}
|
||||
}
|
Reference in a new issue