<?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 Version20230314143827 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('
ALTER TABLE language
ADD but_update VARCHAR(100) DEFAULT NULL,
ADD chip_search_results VARCHAR(100) DEFAULT NULL,
ADD title_edit VARCHAR(100) DEFAULT NULL,
ADD title_linked_categories VARCHAR(100) DEFAULT NULL,
ADD title_linked_subcategories VARCHAR(100) DEFAULT NULL,
ADD title_linked_buttons VARCHAR(100) DEFAULT NULL,
ADD title_choose_image VARCHAR(100) DEFAULT NULL,
ADD title_path VARCHAR(100) DEFAULT NULL,
ADD title_action VARCHAR(100) DEFAULT NULL,
ADD title_role VARCHAR(100) DEFAULT NULL,
ADD title_contact VARCHAR(100) DEFAULT NULL,
ADD title_open_hours VARCHAR(100) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}