<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Add objectPlacementStatementType field to application
*/
final class Version20260128143000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add objectPlacementStatementType to application for radio field';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE application ADD object_placement_statement_type VARCHAR(255) DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE application DROP object_placement_statement_type');
}
}