Update CI.

This commit is contained in:
Pol Dellaiera
2021-11-23 10:47:41 +01:00
parent 1e804f351c
commit c5da567480
2 changed files with 84 additions and 37 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace Chill\Migrations\Main;
use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
class Version20100000000000 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('CREATE EXTENSION IF NOT EXISTS unaccent');
$this->addSql('CREATE EXTENSION IF NOT EXISTS pg_trgm');
}
public function down(Schema $schema): void
{
}
}