mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
18 lines
307 B
PHP
18 lines
307 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use const Shlinkio\Shlink\MIGRATIONS_TABLE;
|
|
|
|
return [
|
|
|
|
'migrations_paths' => [
|
|
'ShlinkMigrations' => 'data/migrations',
|
|
],
|
|
'table_storage' => [
|
|
'table_name' => MIGRATIONS_TABLE,
|
|
],
|
|
'custom_template' => 'data/migrations_template.txt',
|
|
|
|
];
|