<?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 Version20240927143111 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE lait ADD display TINYINT(1) NOT NULL');
$this->addSql('ALTER TABLE lait_traitement ADD display TINYINT(1) NOT NULL');
$this->addSql('ALTER TABLE origine ADD display TINYINT(1) NOT NULL');
$this->addSql('ALTER TABLE theme_plateau ADD display TINYINT(1) NOT NULL');
$this->addSql('ALTER TABLE type ADD display TINYINT(1) NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE lait DROP display');
$this->addSql('ALTER TABLE lait_traitement DROP display');
$this->addSql('ALTER TABLE origine DROP display');
$this->addSql('ALTER TABLE theme_plateau DROP display');
$this->addSql('ALTER TABLE type DROP display');
}
}