migrations/Version20220629163143.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. final class Version20220629163143 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('CREATE TABLE search_engine (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) DEFAULT NULL, value VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  11.         $this->addSql('CREATE TABLE sort_engine (id INT AUTO_INCREMENT NOT NULL, category_id INT DEFAULT NULL, sub_category_id INT DEFAULT NULL, button_id INT DEFAULT NULL, visiting_card_id INT DEFAULT NULL, name VARCHAR(255) DEFAULT NULL, value VARCHAR(255) DEFAULT NULL, INDEX IDX_56138CAA12469DE2 (category_id), INDEX IDX_56138CAAF7BFE87C (sub_category_id), INDEX IDX_56138CAAA123E519 (button_id), INDEX IDX_56138CAAEB37EBA0 (visiting_card_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  12.         $this->addSql('ALTER TABLE sort_engine ADD CONSTRAINT FK_56138CAA12469DE2 FOREIGN KEY (category_id) REFERENCES category (id)');
  13.         $this->addSql('ALTER TABLE sort_engine ADD CONSTRAINT FK_56138CAAF7BFE87C FOREIGN KEY (sub_category_id) REFERENCES sub_category (id)');
  14.         $this->addSql('ALTER TABLE sort_engine ADD CONSTRAINT FK_56138CAAA123E519 FOREIGN KEY (button_id) REFERENCES button (id)');
  15.         $this->addSql('ALTER TABLE sort_engine ADD CONSTRAINT FK_56138CAAEB37EBA0 FOREIGN KEY (visiting_card_id) REFERENCES visiting_card (id)');
  16.         $this->addSql('ALTER TABLE button ADD search_engine_id INT DEFAULT NULL, ADD sort_engine_id INT DEFAULT NULL, ADD is_active TINYINT(1) DEFAULT NULL, ADD position INT DEFAULT NULL');
  17.         $this->addSql('ALTER TABLE button ADD CONSTRAINT FK_3A06AC3D5C978CA2 FOREIGN KEY (search_engine_id) REFERENCES search_engine (id)');
  18.         $this->addSql('ALTER TABLE button ADD CONSTRAINT FK_3A06AC3DA1268B49 FOREIGN KEY (sort_engine_id) REFERENCES sort_engine (id)');
  19.         $this->addSql('CREATE INDEX IDX_3A06AC3D5C978CA2 ON button (search_engine_id)');
  20.         $this->addSql('CREATE INDEX IDX_3A06AC3DA1268B49 ON button (sort_engine_id)');
  21.         $this->addSql('ALTER TABLE category ADD search_engine_id INT DEFAULT NULL, ADD sort_engine_id INT DEFAULT NULL, ADD is_active TINYINT(1) DEFAULT NULL, ADD position INT DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE category ADD CONSTRAINT FK_64C19C15C978CA2 FOREIGN KEY (search_engine_id) REFERENCES search_engine (id)');
  23.         $this->addSql('ALTER TABLE category ADD CONSTRAINT FK_64C19C1A1268B49 FOREIGN KEY (sort_engine_id) REFERENCES sort_engine (id)');
  24.         $this->addSql('CREATE INDEX IDX_64C19C15C978CA2 ON category (search_engine_id)');
  25.         $this->addSql('CREATE INDEX IDX_64C19C1A1268B49 ON category (sort_engine_id)');
  26.         $this->addSql('ALTER TABLE menu ADD icon VARCHAR(255) DEFAULT NULL');
  27.         $this->addSql('ALTER TABLE sub_category ADD search_engine_id INT DEFAULT NULL, ADD sort_engine_id INT DEFAULT NULL, ADD is_active TINYINT(1) DEFAULT NULL, ADD position INT DEFAULT NULL');
  28.         $this->addSql('ALTER TABLE sub_category ADD CONSTRAINT FK_BCE3F7985C978CA2 FOREIGN KEY (search_engine_id) REFERENCES search_engine (id)');
  29.         $this->addSql('ALTER TABLE sub_category ADD CONSTRAINT FK_BCE3F798A1268B49 FOREIGN KEY (sort_engine_id) REFERENCES sort_engine (id)');
  30.         $this->addSql('CREATE INDEX IDX_BCE3F7985C978CA2 ON sub_category (search_engine_id)');
  31.         $this->addSql('CREATE INDEX IDX_BCE3F798A1268B49 ON sub_category (sort_engine_id)');
  32.         $this->addSql('ALTER TABLE visiting_card ADD search_engine_id INT DEFAULT NULL, ADD sort_engine_id INT DEFAULT NULL, ADD is_active TINYINT(1) DEFAULT NULL');
  33.         $this->addSql('ALTER TABLE visiting_card ADD CONSTRAINT FK_CB2C96CC5C978CA2 FOREIGN KEY (search_engine_id) REFERENCES search_engine (id)');
  34.         $this->addSql('ALTER TABLE visiting_card ADD CONSTRAINT FK_CB2C96CCA1268B49 FOREIGN KEY (sort_engine_id) REFERENCES sort_engine (id)');
  35.         $this->addSql('CREATE INDEX IDX_CB2C96CC5C978CA2 ON visiting_card (search_engine_id)');
  36.         $this->addSql('CREATE INDEX IDX_CB2C96CCA1268B49 ON visiting_card (sort_engine_id)');
  37.     }
  38.     public function down(Schema $schema): void
  39.     {
  40.         $this->addSql('ALTER TABLE button DROP FOREIGN KEY FK_3A06AC3D5C978CA2');
  41.         $this->addSql('ALTER TABLE category DROP FOREIGN KEY FK_64C19C15C978CA2');
  42.         $this->addSql('ALTER TABLE sub_category DROP FOREIGN KEY FK_BCE3F7985C978CA2');
  43.         $this->addSql('ALTER TABLE visiting_card DROP FOREIGN KEY FK_CB2C96CC5C978CA2');
  44.         $this->addSql('ALTER TABLE button DROP FOREIGN KEY FK_3A06AC3DA1268B49');
  45.         $this->addSql('ALTER TABLE category DROP FOREIGN KEY FK_64C19C1A1268B49');
  46.         $this->addSql('ALTER TABLE sub_category DROP FOREIGN KEY FK_BCE3F798A1268B49');
  47.         $this->addSql('ALTER TABLE visiting_card DROP FOREIGN KEY FK_CB2C96CCA1268B49');
  48.         $this->addSql('DROP TABLE search_engine');
  49.         $this->addSql('DROP TABLE sort_engine');
  50.         $this->addSql('DROP INDEX IDX_3A06AC3D5C978CA2 ON button');
  51.         $this->addSql('DROP INDEX IDX_3A06AC3DA1268B49 ON button');
  52.         $this->addSql('ALTER TABLE button DROP search_engine_id, DROP sort_engine_id, DROP is_active, DROP position');
  53.         $this->addSql('DROP INDEX IDX_64C19C15C978CA2 ON category');
  54.         $this->addSql('DROP INDEX IDX_64C19C1A1268B49 ON category');
  55.         $this->addSql('ALTER TABLE category DROP search_engine_id, DROP sort_engine_id, DROP is_active, DROP position');
  56.         $this->addSql('ALTER TABLE menu DROP icon');
  57.         $this->addSql('DROP INDEX IDX_BCE3F7985C978CA2 ON sub_category');
  58.         $this->addSql('DROP INDEX IDX_BCE3F798A1268B49 ON sub_category');
  59.         $this->addSql('ALTER TABLE sub_category DROP search_engine_id, DROP sort_engine_id, DROP is_active, DROP position');
  60.         $this->addSql('DROP INDEX IDX_CB2C96CC5C978CA2 ON visiting_card');
  61.         $this->addSql('DROP INDEX IDX_CB2C96CCA1268B49 ON visiting_card');
  62.         $this->addSql('ALTER TABLE visiting_card DROP search_engine_id, DROP sort_engine_id, DROP is_active');
  63.     }
  64. }