migrations/Version20240709074653.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20240709074653 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('CREATE TABLE dict_road_occupation_type (id UUID NOT NULL, created_by UUID DEFAULT NULL, updated_by UUID DEFAULT NULL, name VARCHAR(255) NOT NULL, code VARCHAR(255) NOT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))');
  19.         $this->addSql('CREATE UNIQUE INDEX UNIQ_D73922895E237E06 ON dict_road_occupation_type (name)');
  20.         $this->addSql('CREATE UNIQUE INDEX UNIQ_D739228977153098 ON dict_road_occupation_type (code)');
  21.         $this->addSql('CREATE INDEX IDX_D7392289DE12AB56 ON dict_road_occupation_type (created_by)');
  22.         $this->addSql('CREATE INDEX IDX_D739228916FE72E1 ON dict_road_occupation_type (updated_by)');
  23.         $this->addSql('COMMENT ON COLUMN dict_road_occupation_type.id IS \'(DC2Type:uuid)\'');
  24.         $this->addSql('COMMENT ON COLUMN dict_road_occupation_type.created_by IS \'(DC2Type:uuid)\'');
  25.         $this->addSql('COMMENT ON COLUMN dict_road_occupation_type.updated_by IS \'(DC2Type:uuid)\'');
  26.         $this->addSql('ALTER TABLE dict_road_occupation_type ADD CONSTRAINT FK_D7392289DE12AB56 FOREIGN KEY (created_by) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
  27.         $this->addSql('ALTER TABLE dict_road_occupation_type ADD CONSTRAINT FK_D739228916FE72E1 FOREIGN KEY (updated_by) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
  28.         $this->addSql('ALTER TABLE road_occupation ADD location_decision_date DATE DEFAULT NULL');
  29.     }
  30.     public function down(Schema $schema): void
  31.     {
  32.         // this down() migration is auto-generated, please modify it to your needs
  33.         $this->addSql('CREATE SCHEMA public');
  34.         $this->addSql('ALTER TABLE dict_road_occupation_type DROP CONSTRAINT FK_D7392289DE12AB56');
  35.         $this->addSql('ALTER TABLE dict_road_occupation_type DROP CONSTRAINT FK_D739228916FE72E1');
  36.         $this->addSql('DROP TABLE dict_road_occupation_type');
  37.         $this->addSql('ALTER TABLE road_occupation DROP location_decision_date');
  38.     }
  39. }