migrations/Version20220326155717.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 Version20220326155717 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 language (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, name VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', updated_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', status TINYINT(1) NOT NULL, INDEX IDX_D4DB71B5A76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE language_post (language_id INT NOT NULL, post_id INT NOT NULL, INDEX IDX_688386C182F1BAF4 (language_id), INDEX IDX_688386C14B89032C (post_id), PRIMARY KEY(language_id, post_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE language_category (language_id INT NOT NULL, category_id INT NOT NULL, INDEX IDX_6AEE41FB82F1BAF4 (language_id), INDEX IDX_6AEE41FB12469DE2 (category_id), PRIMARY KEY(language_id, category_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE language ADD CONSTRAINT FK_D4DB71B5A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  22.         $this->addSql('ALTER TABLE language_post ADD CONSTRAINT FK_688386C182F1BAF4 FOREIGN KEY (language_id) REFERENCES language (id) ON DELETE CASCADE');
  23.         $this->addSql('ALTER TABLE language_post ADD CONSTRAINT FK_688386C14B89032C FOREIGN KEY (post_id) REFERENCES post (id) ON DELETE CASCADE');
  24.         $this->addSql('ALTER TABLE language_category ADD CONSTRAINT FK_6AEE41FB82F1BAF4 FOREIGN KEY (language_id) REFERENCES language (id) ON DELETE CASCADE');
  25.         $this->addSql('ALTER TABLE language_category ADD CONSTRAINT FK_6AEE41FB12469DE2 FOREIGN KEY (category_id) REFERENCES category (id) ON DELETE CASCADE');
  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 language_post DROP FOREIGN KEY FK_688386C182F1BAF4');
  31.         $this->addSql('ALTER TABLE language_category DROP FOREIGN KEY FK_6AEE41FB82F1BAF4');
  32.         $this->addSql('DROP TABLE language');
  33.         $this->addSql('DROP TABLE language_post');
  34.         $this->addSql('DROP TABLE language_category');
  35.     }
  36. }