mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
30 lines
838 B
PHP
30 lines
838 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\Migrations\Task;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
final class Version20241101093514 extends AbstractMigration
|
|
{
|
|
public function getDescription(): string
|
|
{
|
|
return 'Set a default for task current_states';
|
|
}
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$this->addSql('ALTER TABLE chill_task.recurring_task ALTER current_states SET DEFAULT \'[]\'');
|
|
$this->addSql('ALTER TABLE chill_task.single_task ALTER current_states SET DEFAULT \'[]\'');
|
|
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$this->addSql('ALTER TABLE chill_task.single_task ALTER current_states DROP DEFAULT');
|
|
$this->addSql('ALTER TABLE chill_task.recurring_task ALTER current_states DROP DEFAULT');
|
|
}
|
|
}
|