<?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 Version20210825210823 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 lnk_Subscription_Options ADD suspended DATETIME DEFAULT NULL, ADD trialdate DATETIME DEFAULT NULL, ADD stop_cancel_date DATETIME DEFAULT NULL, ADD is_subscription_stripe TINYINT(1) DEFAULT NULL, CHANGE created created DATETIME DEFAULT NULL, CHANGE updated updated DATETIME DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE lnk_Subscription_Options DROP suspended, DROP trialdate, DROP stop_cancel_date, DROP is_subscription_stripe, CHANGE created created DATETIME NOT NULL, CHANGE updated updated DATETIME NOT NULL');
}
}