<?php
declare(strict_types=1);
namespace Boldr\Cms\OpeningHoursBundle\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Boldr\Cms\CmsBundle\BoldrCmsMigration;
class Version2_5_0 extends BoldrCmsMigration
{
public function getBundle(): string { return 'boldr/opening-hours-bundle'; }
public function getVersion(): ?string { return '2.5.0'; }
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE opening_hours_opening_hours ADD `date` DATE DEFAULT NULL COMMENT \'(DC2Type:date_immutable)\'');
}
}