migrations/Version20240116052029.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 Version20240116052029 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_hide (id INT AUTO_INCREMENT NOT NULL, post_id INT DEFAULT NULL, community_group_id INT DEFAULT NULL, user_id INT DEFAULT NULL, created_at DATETIME DEFAULT NULL, updated_at DATETIME DEFAULT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_C8345F8E4B89032C (post_id), INDEX IDX_C8345F8EC121C60 (community_group_id), INDEX IDX_C8345F8EA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE community_post_share (id INT AUTO_INCREMENT NOT NULL, post_id INT DEFAULT NULL, community_group_id INT DEFAULT NULL, created_at DATETIME DEFAULT NULL, updated_at DATETIME DEFAULT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_49D667A94B89032C (post_id), INDEX IDX_49D667A9C121C60 (community_group_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE community_post_hide ADD CONSTRAINT FK_C8345F8E4B89032C FOREIGN KEY (post_id) REFERENCES community_post (id)');
  21.         $this->addSql('ALTER TABLE community_post_hide ADD CONSTRAINT FK_C8345F8EC121C60 FOREIGN KEY (community_group_id) REFERENCES community_groups (id)');
  22.         $this->addSql('ALTER TABLE community_post_hide ADD CONSTRAINT FK_C8345F8EA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  23.         $this->addSql('ALTER TABLE community_post_share ADD CONSTRAINT FK_49D667A94B89032C FOREIGN KEY (post_id) REFERENCES community_post (id)');
  24.         $this->addSql('ALTER TABLE community_post_share ADD CONSTRAINT FK_49D667A9C121C60 FOREIGN KEY (community_group_id) REFERENCES community_groups (id)');
  25.         
  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 community_post_hide DROP FOREIGN KEY FK_C8345F8E4B89032C');
  31.         $this->addSql('ALTER TABLE community_post_hide DROP FOREIGN KEY FK_C8345F8EC121C60');
  32.         $this->addSql('ALTER TABLE community_post_hide DROP FOREIGN KEY FK_C8345F8EA76ED395');
  33.         $this->addSql('ALTER TABLE community_post_share DROP FOREIGN KEY FK_49D667A94B89032C');
  34.         $this->addSql('ALTER TABLE community_post_share DROP FOREIGN KEY FK_49D667A9C121C60');
  35.         $this->addSql('DROP TABLE community_post_hide');
  36.         $this->addSql('DROP TABLE community_post_share');
  37.         
  38.     }
  39. }