migrations/Version20211226195815.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 Version20211226195815 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('ALTER TABLE notification_email ADD created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, ADD updated_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL');
  19.         $this->addSql('ALTER TABLE subscription DROP FOREIGN KEY FK_A3C664D3F44CABFF');
  20.         $this->addSql('DROP INDEX IDX_A3C664D3F44CABFF ON subscription');
  21.         $this->addSql('ALTER TABLE subscription DROP package_id');
  22.         $this->addSql('ALTER TABLE user ADD created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, ADD updated_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL');
  23.         $this->addSql('ALTER TABLE user_field_value ADD created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, ADD updated_at DATETIME DEFAULT CURRENT_TIMESTAMP 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 notification_email DROP created_at, DROP updated_at');
  29.         $this->addSql('ALTER TABLE subscription ADD package_id INT NOT NULL');
  30.         $this->addSql('ALTER TABLE subscription ADD CONSTRAINT FK_A3C664D3F44CABFF FOREIGN KEY (package_id) REFERENCES package (id) ON UPDATE NO ACTION ON DELETE NO ACTION');
  31.         $this->addSql('CREATE INDEX IDX_A3C664D3F44CABFF ON subscription (package_id)');
  32.         $this->addSql('ALTER TABLE user DROP created_at, DROP updated_at');
  33.         $this->addSql('ALTER TABLE user_field_value DROP created_at, DROP updated_at');
  34.     }
  35. }