<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20210713214242 extends AbstractMigration{ public function up(Schema $schema): void { $this->addSql('ALTER TABLE image ADD created_at DATETIME NOT NULL'); } public function down(Schema $schema): void { $this->addSql('ALTER TABLE image DROP created_at'); }}