fix missing postgresql extension: correct class name

This commit is contained in:
Julien Fastré 2021-06-04 14:54:14 +02:00
parent 17481798fb
commit 55fa16ce56
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ cache:
before_script: before_script:
# add extensions to postgres # add extensions to postgres
- PGPASSWORD=$POSTGRES_PASSWORD psql -U $POSTGRES_USER -h db -c "CREATE EXTENSION IF NOT EXISTS unaccent; CREATE EXTENSION IF NOT EXISTS pg_trgm; CREATE EXTENSION IF NOT EXISTS btree_gist;" - PGPASSWORD=$POSTGRES_PASSWORD psql -U $POSTGRES_USER -h db -c "CREATE EXTENSION IF NOT EXISTS unaccent; CREATE EXTENSION IF NOT EXISTS pg_trgm;"
# Install and run Composer # Install and run Composer
- curl -sS https://getcomposer.org/installer | php - curl -sS https://getcomposer.org/installer | php
- php -d memory_limit=2G composer.phar install - php -d memory_limit=2G composer.phar install

View File

@ -10,7 +10,7 @@ use Doctrine\Migrations\AbstractMigration;
/** /**
* Add extension btree_gist * Add extension btree_gist
*/ */
final class Version20210528104651 extends AbstractMigration final class Version20210528090000 extends AbstractMigration
{ {
public function getDescription(): string public function getDescription(): string
{ {