<?php
declare(strict_types=1);
namespace ProjectsBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230906133818 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE projects_bundle__task CHANGE state_id state_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', CHANGE priority_id priority_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE projects_bundle__task CHANGE state_id state_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', CHANGE priority_id priority_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\'');
}
}