migrations/Version20230908104541.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 Version20230908104541 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return 'add wiki_post_read';
  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_post_read (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, post_id INT DEFAULT NULL, created_at DATETIME NOT NULL, INDEX IDX_5A323F48A76ED395 (user_id), INDEX IDX_5A323F484B89032C (post_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE wiki_post_read ADD CONSTRAINT FK_5A323F48A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  20.         $this->addSql('ALTER TABLE wiki_post_read ADD CONSTRAINT FK_5A323F484B89032C FOREIGN KEY (post_id) REFERENCES wiki_post (id)');
  21.     }
  22.     public function down(Schema $schema): void
  23.     {
  24.         // this down() migration is auto-generated, please modify it to your needs
  25.         $this->addSql('ALTER TABLE wiki_post_read DROP FOREIGN KEY FK_5A323F48A76ED395');
  26.         $this->addSql('ALTER TABLE wiki_post_read DROP FOREIGN KEY FK_5A323F484B89032C');
  27.         $this->addSql('DROP TABLE wiki_post_read');
  28.     }
  29. }