Files
ludikevent_crm/migrations/Version20260206160000.php

35 lines
1.1 KiB
PHP
Raw Permalink Normal View History

<?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 Version20260206160000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Set default value for type in contrats_line table';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql("ALTER TABLE contrats_line ALTER type SET DEFAULT 'product'");
$this->addSql("UPDATE contrats_line SET type = 'product' WHERE type IS NULL");
$this->addSql("ALTER TABLE contrats_line ALTER type SET NOT NULL");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE contrats_line ALTER type DROP DEFAULT');
$this->addSql('ALTER TABLE contrats_line ALTER type DROP NOT NULL');
}
}