mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 04:03:12 +08:00
Migrated migrations config file from yaml to plain PHP
This commit is contained in:
11
migrations.php
Normal file
11
migrations.php
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
return [
|
||||||
|
'name' => 'ShlinkMigrations',
|
||||||
|
'migrations_namespace' => 'ShlinkMigrations',
|
||||||
|
'table_name' => 'migrations',
|
||||||
|
'migrations_directory' => 'data/migrations',
|
||||||
|
'custom_template' => 'data/migrations_template.txt',
|
||||||
|
];
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
name: ShlinkMigrations
|
|
||||||
migrations_namespace: ShlinkMigrations
|
|
||||||
table_name: migrations
|
|
||||||
migrations_directory: data/migrations
|
|
||||||
custom_template: data/migrations_template.txt
|
|
||||||
Reference in New Issue
Block a user