migrations/Version20220624035622.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 Version20220624035622 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 news (id INT AUTO_INCREMENT NOT NULL, category_id INT NOT NULL, video_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, preview VARCHAR(255) NOT NULL, description VARCHAR(512) NOT NULL, detail_time VARCHAR(128) NOT NULL, public TINYINT(1) NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, link VARCHAR(255) NOT NULL, INDEX IDX_1DD3995012469DE2 (category_id), INDEX IDX_1DD3995029C1004E (video_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE news_news_tag (news_id INT NOT NULL, news_tag_id INT NOT NULL, INDEX IDX_F7007BF0B5A459A0 (news_id), INDEX IDX_F7007BF0367BA065 (news_tag_id), PRIMARY KEY(news_id, news_tag_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE news_static (id INT AUTO_INCREMENT NOT NULL, news_id INT NOT NULL, title VARCHAR(255) NOT NULL, filename VARCHAR(255) NOT NULL, INDEX IDX_C69EB51B5A459A0 (news_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE news ADD CONSTRAINT FK_1DD3995012469DE2 FOREIGN KEY (category_id) REFERENCES news_category (id)');
  22.         $this->addSql('ALTER TABLE news ADD CONSTRAINT FK_1DD3995029C1004E FOREIGN KEY (video_id) REFERENCES video (id)');
  23.         $this->addSql('ALTER TABLE news_news_tag ADD CONSTRAINT FK_F7007BF0B5A459A0 FOREIGN KEY (news_id) REFERENCES news (id) ON DELETE CASCADE');
  24.         $this->addSql('ALTER TABLE news_news_tag ADD CONSTRAINT FK_F7007BF0367BA065 FOREIGN KEY (news_tag_id) REFERENCES news_tag (id) ON DELETE CASCADE');
  25.         $this->addSql('ALTER TABLE news_static ADD CONSTRAINT FK_C69EB51B5A459A0 FOREIGN KEY (news_id) REFERENCES news (id)');
  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 news_news_tag DROP FOREIGN KEY FK_F7007BF0B5A459A0');
  31.         $this->addSql('ALTER TABLE news_static DROP FOREIGN KEY FK_C69EB51B5A459A0');
  32.         $this->addSql('ALTER TABLE news DROP FOREIGN KEY FK_1DD3995029C1004E');
  33.         $this->addSql('DROP TABLE news');
  34.         $this->addSql('DROP TABLE news_news_tag');
  35.         $this->addSql('DROP TABLE news_static');
  36.     }
  37. }