2019-12-06 09:50:37 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2022-03-05 10:41:13 +01:00
|
|
|
use const Shlinkio\Shlink\MIGRATIONS_TABLE;
|
|
|
|
|
|
2019-12-06 09:50:37 +01:00
|
|
|
return [
|
2020-06-21 13:00:32 +02:00
|
|
|
|
2020-06-15 18:35:53 +02:00
|
|
|
'migrations_paths' => [
|
|
|
|
|
'ShlinkMigrations' => 'data/migrations',
|
|
|
|
|
],
|
|
|
|
|
'table_storage' => [
|
2022-03-05 10:41:13 +01:00
|
|
|
'table_name' => MIGRATIONS_TABLE,
|
2020-06-15 18:35:53 +02:00
|
|
|
],
|
2019-12-06 09:50:37 +01:00
|
|
|
'custom_template' => 'data/migrations_template.txt',
|
2020-06-21 13:00:32 +02:00
|
|
|
|
2019-12-06 09:50:37 +01:00
|
|
|
];
|