migrations/Version20230911131203.php line 1

  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 Version20230911131203 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return 'add wiki_course and wiki_course_post table';
  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 wiki_course (id INT AUTO_INCREMENT NOT NULL, author_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL, INDEX IDX_F23F2A8BF675F31B (author_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE wiki_course_post (course_id INT NOT NULL, post_id INT NOT NULL, INDEX IDX_7ABF3DD591CC992 (course_id), INDEX IDX_7ABF3DD4B89032C (post_id), PRIMARY KEY(course_id, post_id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE wiki_course ADD CONSTRAINT FK_F23F2A8BF675F31B FOREIGN KEY (author_id) REFERENCES user (id)');
  21.         $this->addSql('ALTER TABLE wiki_course_post ADD CONSTRAINT FK_7ABF3DD591CC992 FOREIGN KEY (course_id) REFERENCES wiki_course (id)');
  22.         $this->addSql('ALTER TABLE wiki_course_post ADD CONSTRAINT FK_7ABF3DD4B89032C FOREIGN KEY (post_id) REFERENCES wiki_post (id)');
  23.         $this->addSql('ALTER TABLE sale_upwork_rss CHANGE url url VARCHAR(510) NOT NULL');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         $this->addSql('ALTER TABLE wiki_course DROP FOREIGN KEY FK_F23F2A8BF675F31B');
  29.         $this->addSql('ALTER TABLE wiki_course_post DROP FOREIGN KEY FK_7ABF3DD591CC992');
  30.         $this->addSql('ALTER TABLE wiki_course_post DROP FOREIGN KEY FK_7ABF3DD4B89032C');
  31.         $this->addSql('DROP TABLE wiki_course');
  32.         $this->addSql('DROP TABLE wiki_course_post');
  33.         $this->addSql('ALTER TABLE sale_upwork_rss CHANGE url url VARCHAR(255) NOT NULL');
  34.     }
  35. }