<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20240221081538 extends AbstractMigration
{
public function getDescription(): string
{
return 'AOI-322 分譲サイトのイベントフォーム用に自由項目欄の設定を追加する';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE cms_event_entry ADD inquiry_message_label VARCHAR(128) DEFAULT NULL, ADD inquiry_message_placeholder VARCHAR(255) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE cms_event_entry DROP inquiry_message_label, DROP inquiry_message_placeholder');
}
}