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