<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20211226195815 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE notification_email ADD created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, ADD updated_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL');
$this->addSql('ALTER TABLE subscription DROP FOREIGN KEY FK_A3C664D3F44CABFF');
$this->addSql('DROP INDEX IDX_A3C664D3F44CABFF ON subscription');
$this->addSql('ALTER TABLE subscription DROP package_id');
$this->addSql('ALTER TABLE user ADD created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, ADD updated_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL');
$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');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE notification_email DROP created_at, DROP updated_at');
$this->addSql('ALTER TABLE subscription ADD package_id INT NOT NULL');
$this->addSql('ALTER TABLE subscription ADD CONSTRAINT FK_A3C664D3F44CABFF FOREIGN KEY (package_id) REFERENCES package (id) ON UPDATE NO ACTION ON DELETE NO ACTION');
$this->addSql('CREATE INDEX IDX_A3C664D3F44CABFF ON subscription (package_id)');
$this->addSql('ALTER TABLE user DROP created_at, DROP updated_at');
$this->addSql('ALTER TABLE user_field_value DROP created_at, DROP updated_at');
}
}