migrations/Version20221219085426.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 Version20221219085426 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 claim_department (id INT AUTO_INCREMENT NOT NULL, title VARCHAR(255) NOT NULL, active TINYINT(1) DEFAULT 1, position INT DEFAULT 1 NOT NULL, slug VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT NULL, modified_at DATETIME DEFAULT NULL, created_user INT DEFAULT NULL, modified_user INT DEFAULT NULL, UNIQUE INDEX UNIQ_1061ED36989D9B62 (slug), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE claim_district (id INT AUTO_INCREMENT NOT NULL, province_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, active TINYINT(1) DEFAULT 1, position INT DEFAULT 1 NOT NULL, slug VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT NULL, modified_at DATETIME DEFAULT NULL, created_user INT DEFAULT NULL, modified_user INT DEFAULT NULL, UNIQUE INDEX UNIQ_F031B2C3989D9B62 (slug), INDEX IDX_F031B2C3E946114A (province_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE claim_province (id INT AUTO_INCREMENT NOT NULL, deparment_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, active TINYINT(1) DEFAULT 1, position INT DEFAULT 1 NOT NULL, slug VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT NULL, modified_at DATETIME DEFAULT NULL, created_user INT DEFAULT NULL, modified_user INT DEFAULT NULL, UNIQUE INDEX UNIQ_8B2A324F989D9B62 (slug), INDEX IDX_8B2A324FCB217CF9 (deparment_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE claim_district ADD CONSTRAINT FK_F031B2C3E946114A FOREIGN KEY (province_id) REFERENCES claim_province (id) ON DELETE SET NULL');
  22.         $this->addSql('ALTER TABLE claim_province ADD CONSTRAINT FK_8B2A324FCB217CF9 FOREIGN KEY (deparment_id) REFERENCES claim_department (id) ON DELETE SET NULL');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->addSql('ALTER TABLE claim_province DROP FOREIGN KEY FK_8B2A324FCB217CF9');
  28.         $this->addSql('ALTER TABLE claim_district DROP FOREIGN KEY FK_F031B2C3E946114A');
  29.         $this->addSql('DROP TABLE claim_department');
  30.         $this->addSql('DROP TABLE claim_district');
  31.         $this->addSql('DROP TABLE claim_province');
  32.     }
  33. }