shlink/migrations.php

18 lines
307 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
use const Shlinkio\Shlink\MIGRATIONS_TABLE;
return [
2020-06-15 19:35:53 +03:00
'migrations_paths' => [
'ShlinkMigrations' => 'data/migrations',
],
'table_storage' => [
'table_name' => MIGRATIONS_TABLE,
2020-06-15 19:35:53 +03:00
],
'custom_template' => 'data/migrations_template.txt',
];