FIX [migration][budget] migration to change the comment on tags column from jsonb to json

This commit is contained in:
Julie Lenaerts 2023-02-01 14:13:29 +01:00
parent e5bc74d11d
commit 16ec858ee8

View File

@ -0,0 +1,37 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\Migrations\Budget;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20230201131008 extends AbstractMigration
{
public function down(Schema $schema): void
{
// this shouldn't be undone.
}
public function getDescription(): string
{
return 'Fix the comment on tags column in resource and charge type';
}
public function up(Schema $schema): void
{
$this->addSql('COMMENT ON COLUMN chill_budget.resource_type.tags IS \'(DC2Type:json)\'');
$this->addSql('COMMENT ON COLUMN chill_budget.charge_type.tags IS \'(DC2Type:json)\'');
}
}