mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 21:02:24 +03:00
15 lines
258 B
PHP
15 lines
258 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'migrations_paths' => [
|
|
'ShlinkMigrations' => 'data/migrations',
|
|
],
|
|
'table_storage' => [
|
|
'table_name' => 'migrations',
|
|
],
|
|
'custom_template' => 'data/migrations_template.txt',
|
|
|
|
];
|