mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
[bugfix] add missing migrations files
This commit is contained in:
parent
5bf9bbc22e
commit
08af072208
@ -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
|
||||
|
32
Resources/migrations/Version20210308111926.php
Normal file
32
Resources/migrations/Version20210308111926.php
Normal 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";
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user