<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220912231950 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE news_group_news DROP FOREIGN KEY FK_D8F61559B76A7A16');
$this->addSql('DROP TABLE news_group');
$this->addSql('DROP TABLE news_group_news');
$this->addSql('ALTER TABLE news ADD note VARCHAR(512) DEFAULT NULL');
$this->addSql('ALTER TABLE product_article CHANGE value value VARCHAR(50) NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$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 = \'\' ');
$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 = \'\' ');
$this->addSql('ALTER TABLE news_group_news ADD CONSTRAINT FK_D8F61559B5A459A0 FOREIGN KEY (news_id) REFERENCES news (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE news_group_news ADD CONSTRAINT FK_D8F61559B76A7A16 FOREIGN KEY (news_group_id) REFERENCES news_group (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE news DROP note');
$this->addSql('ALTER TABLE product_article CHANGE value value VARCHAR(50) DEFAULT \'Н/Д\' NOT NULL');
}
}