<?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 Version20240719160222 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add type field in templateName entity and Set template name type by kiosk for borne otherwise by web_site';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE template_name ADD type VARCHAR(255) NOT NULL');
$this->addSql('UPDATE template_name SET type = "kiosk" WHERE template_name.code = "borne"');
$this->addSql('UPDATE template_name SET type = "web_site" WHERE template_name.code != "borne"');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE template_name DROP type');
}
}