<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20240124185133 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add lang column to opinion and outdoor_safety tables';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE opinion ADD lang VARCHAR(2) DEFAULT \'en\' NOT NULL');
$this->addSql('ALTER TABLE outdoor_safety ADD lang VARCHAR(2) DEFAULT \'en\' NOT NULL, CHANGE show_on_homepage show_on_homepage TINYINT(1) DEFAULT 0 NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE opinion DROP lang');
$this->addSql('ALTER TABLE outdoor_safety DROP lang, CHANGE show_on_homepage show_on_homepage TINYINT(1) NOT NULL');
}
}