migrations/Version20240926061039.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 Version20240926061039 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('CREATE TABLE hotel_category_sites (hotel_category_id INT NOT NULL, sites_id INT NOT NULL, INDEX IDX_1168AC11CC88D7CD (hotel_category_id), INDEX IDX_1168AC117838E496 (sites_id), PRIMARY KEY(hotel_category_id, sites_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  18.         $this->addSql('CREATE TABLE tour_category_sites (tour_category_id INT NOT NULL, sites_id INT NOT NULL, INDEX IDX_CD5F06447210CF21 (tour_category_id), INDEX IDX_CD5F06447838E496 (sites_id), PRIMARY KEY(tour_category_id, sites_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE hotel_category_sites ADD CONSTRAINT FK_1168AC11CC88D7CD FOREIGN KEY (hotel_category_id) REFERENCES hotel_category (id) ON DELETE CASCADE');
  20.         $this->addSql('ALTER TABLE hotel_category_sites ADD CONSTRAINT FK_1168AC117838E496 FOREIGN KEY (sites_id) REFERENCES sites (id) ON DELETE CASCADE');
  21.         $this->addSql('ALTER TABLE tour_category_sites ADD CONSTRAINT FK_CD5F06447210CF21 FOREIGN KEY (tour_category_id) REFERENCES tour_category (id) ON DELETE CASCADE');
  22.         $this->addSql('ALTER TABLE tour_category_sites ADD CONSTRAINT FK_CD5F06447838E496 FOREIGN KEY (sites_id) REFERENCES sites (id) ON DELETE CASCADE');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         $this->addSql('ALTER TABLE hotel_category_sites DROP FOREIGN KEY FK_1168AC11CC88D7CD');
  27.         $this->addSql('ALTER TABLE hotel_category_sites DROP FOREIGN KEY FK_1168AC117838E496');
  28.         $this->addSql('ALTER TABLE tour_category_sites DROP FOREIGN KEY FK_CD5F06447210CF21');
  29.         $this->addSql('ALTER TABLE tour_category_sites DROP FOREIGN KEY FK_CD5F06447838E496');
  30.         $this->addSql('DROP TABLE hotel_category_sites');
  31.         $this->addSql('DROP TABLE tour_category_sites');
  32.     }
  33. }