migrations/Version20241011120738.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 Version20241011120738 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 marketing_show_case (id INT AUTO_INCREMENT NOT NULL, hotel_category_id INT DEFAULT NULL, tour_category_id INT DEFAULT NULL, site_id INT DEFAULT NULL, title VARCHAR(255) DEFAULT NULL, sequence INT NOT NULL, INDEX IDX_E45DE8D2CC88D7CD (hotel_category_id), INDEX IDX_E45DE8D27210CF21 (tour_category_id), INDEX IDX_E45DE8D2F6BD1646 (site_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE marketing_show_case ADD CONSTRAINT FK_E45DE8D2CC88D7CD FOREIGN KEY (hotel_category_id) REFERENCES hotel_category (id)');
  20.         $this->addSql('ALTER TABLE marketing_show_case ADD CONSTRAINT FK_E45DE8D27210CF21 FOREIGN KEY (tour_category_id) REFERENCES tour_category (id)');
  21.         $this->addSql('ALTER TABLE marketing_show_case ADD CONSTRAINT FK_E45DE8D2F6BD1646 FOREIGN KEY (site_id) REFERENCES sites (id)');
  22.         $this->addSql('ALTER TABLE image ADD marketing_show_case_id INT DEFAULT NULL');
  23.         $this->addSql('ALTER TABLE image ADD CONSTRAINT FK_C53D045F6B317027 FOREIGN KEY (marketing_show_case_id) REFERENCES marketing_show_case (id)');
  24.         $this->addSql('CREATE INDEX IDX_C53D045F6B317027 ON image (marketing_show_case_id)');
  25.         $this->addSql('ALTER TABLE tour_price CHANGE discount_type discount_type TINYINT(1) DEFAULT 0 NOT NULL');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('ALTER TABLE image DROP FOREIGN KEY FK_C53D045F6B317027');
  31.         $this->addSql('ALTER TABLE marketing_show_case DROP FOREIGN KEY FK_E45DE8D2CC88D7CD');
  32.         $this->addSql('ALTER TABLE marketing_show_case DROP FOREIGN KEY FK_E45DE8D27210CF21');
  33.         $this->addSql('ALTER TABLE marketing_show_case DROP FOREIGN KEY FK_E45DE8D2F6BD1646');
  34.         $this->addSql('DROP TABLE marketing_show_case');
  35.         $this->addSql('DROP INDEX IDX_C53D045F6B317027 ON image');
  36.         $this->addSql('ALTER TABLE image DROP marketing_show_case_id');
  37.         $this->addSql('ALTER TABLE tour_price CHANGE discount_type discount_type TINYINT(1) NOT NULL');
  38.     }
  39. }