[bugfix] add missing migrations files

This commit is contained in:
Julien Fastré 2021-03-08 14:15:25 +01:00
parent 5bf9bbc22e
commit 08af072208
2 changed files with 37 additions and 0 deletions

View File

@ -150,3 +150,8 @@ Version 1.5.23
==============
- [address] allow to add custom fields to addresses
Version 1.5.24
==============
- [bugfix] add missing migration files

View File

@ -0,0 +1,32 @@
<?php declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Add custom data in address
*/
final class Version20210308111926 extends AbstractMigration
{
public function up(Schema $schema) : void
{
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'postgresql', 'Migration can only be executed safely on \'postgresql\'.');
$this->addSql('ALTER TABLE chill_main_address ADD customs JSONB DEFAULT \'[]\'');
}
public function down(Schema $schema) : void
{
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'postgresql', 'Migration can only be executed safely on \'postgresql\'.');
$this->addSql('ALTER TABLE chill_main_address DROP customs');
}
public function getDescription(): string
{
return "Add custom data in addresses";
}
}