<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Types\Types;
use Doctrine\Migrations\AbstractMigration;
final class Version20221222144001 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add exported_to_v9_at to member_application';
}
public function up(Schema $schema): void
{
$this->skipIf(
true === $schema->getTable('member_application')->hasColumn('exported_to_v9_at'),
'The exported_to_v9_at field already exists in the member_application table!'
);
$schema->getTable('member_application')
->addColumn('exported_to_v9_at', Types::DATETIME_IMMUTABLE)
->setNotnull(false);
}
public function down(Schema $schema): void
{
$this->skipIf(
false === $schema->getTable('member_application')->hasColumn('exported_to_v9_at'),
'The exported_to_v9_at is already removed from the member_application table!'
);
$schema->getTable('member_application')
->dropColumn('exported_to_v9_at');
}
}