migrations/Version20220912231950.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 Version20220912231950 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('ALTER TABLE news_group_news DROP FOREIGN KEY FK_D8F61559B76A7A16');
  19.         $this->addSql('DROP TABLE news_group');
  20.         $this->addSql('DROP TABLE news_group_news');
  21.         $this->addSql('ALTER TABLE news ADD note VARCHAR(512) DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE product_article CHANGE value value VARCHAR(50) NOT 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('CREATE TABLE news_group (id INT AUTO_INCREMENT NOT NULL, title VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, link VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  28.         $this->addSql('CREATE TABLE news_group_news (news_group_id INT NOT NULL, news_id INT NOT NULL, INDEX IDX_D8F61559B76A7A16 (news_group_id), INDEX IDX_D8F61559B5A459A0 (news_id), PRIMARY KEY(news_group_id, news_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  29.         $this->addSql('ALTER TABLE news_group_news ADD CONSTRAINT FK_D8F61559B5A459A0 FOREIGN KEY (news_id) REFERENCES news (id) ON DELETE CASCADE');
  30.         $this->addSql('ALTER TABLE news_group_news ADD CONSTRAINT FK_D8F61559B76A7A16 FOREIGN KEY (news_group_id) REFERENCES news_group (id) ON DELETE CASCADE');
  31.         $this->addSql('ALTER TABLE news DROP note');
  32.         $this->addSql('ALTER TABLE product_article CHANGE value value VARCHAR(50) DEFAULT \'Н/Д\' NOT NULL');
  33.     }
  34. }