migrations/Version20231207064100.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 Version20231207064100 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 community_post_comment (id INT AUTO_INCREMENT NOT NULL, user_id_id INT DEFAULT NULL, post_id_id INT DEFAULT NULL, parent_comment_id_id INT DEFAULT NULL, comment LONGTEXT DEFAULT NULL, created_at DATETIME DEFAULT NULL, updated_at DATETIME DEFAULT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_F68D5DC09D86650F (user_id_id), INDEX IDX_F68D5DC0E85F12B8 (post_id_id), INDEX IDX_F68D5DC0A586534 (parent_comment_id_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.        
  20.         $this->addSql('ALTER TABLE community_post_comment ADD CONSTRAINT FK_F68D5DC09D86650F FOREIGN KEY (user_id_id) REFERENCES user (id)');
  21.         $this->addSql('ALTER TABLE community_post_comment ADD CONSTRAINT FK_F68D5DC0E85F12B8 FOREIGN KEY (post_id_id) REFERENCES community_post (id)');
  22.         $this->addSql('ALTER TABLE community_post_comment ADD CONSTRAINT FK_F68D5DC0A586534 FOREIGN KEY (parent_comment_id_id) REFERENCES community_post_comment (id)');
  23.         
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         
  29.         $this->addSql('ALTER TABLE community_post_comment DROP FOREIGN KEY FK_F68D5DC09D86650F');
  30.         $this->addSql('ALTER TABLE community_post_comment DROP FOREIGN KEY FK_F68D5DC0E85F12B8');
  31.         $this->addSql('ALTER TABLE community_post_comment DROP FOREIGN KEY FK_F68D5DC0A586534');
  32.         $this->addSql('DROP TABLE community_post_comment');
  33.        
  34.     }
  35. }