<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230416200147 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add deleted_at column to bus_offer table';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE bus_offer ADD deleted_at DATETIME DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE bus_offer DROP deleted_at');
}
}