mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-21 16:38:37 -06:00
12 lines
269 B
PHP
12 lines
269 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'name' => 'ShlinkMigrations',
|
|
'migrations_namespace' => 'ShlinkMigrations',
|
|
'table_name' => 'migrations',
|
|
'migrations_directory' => 'data/migrations',
|
|
'custom_template' => 'data/migrations_template.txt',
|
|
];
|