aspirecloud-migrations/phinx.php

44 lines
1.4 KiB
PHP

<?php
return
[
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
'development' => [
'adapter' => $_ENV['DB_TYPE'] ?? 'pgsql',
'host' => $_ENV['DB_HOST'],
'name' => $_ENV['DB_NAME'],
'user' => $_ENV['DB_USER'],
'pass' => $_ENV['DB_PASS'],
'port' => $_ENV['DB_PORT'],
'schema' => $_ENV['DB_SCHEMA'],
'charset' => 'utf8',
],
'testing' => [
'adapter' => $_ENV['DB_TYPE'] ?? 'pgsql',
'host' => $_ENV['DB_HOST'],
'name' => $_ENV['DB_NAME'],
'user' => $_ENV['DB_USER'],
'pass' => $_ENV['DB_PASS'],
'port' => $_ENV['DB_PORT'],
'schema' => 'testing',
'charset' => 'utf8',
],
'production' => [
'adapter' => $_ENV['DB_TYPE'] ?? 'pgsql',
'host' => $_ENV['DB_HOST'],
'name' => $_ENV['DB_NAME'],
'user' => $_ENV['DB_USER'],
'pass' => $_ENV['DB_PASS'],
'port' => $_ENV['DB_PORT'],
'schema' => $_ENV['DB_SCHEMA'],
'charset' => 'utf8',
],
],
'version_order' => 'creation'
];