mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-14 04:00:57 +03:00
Migrated migrations config file from yaml to plain PHP
This commit is contained in:
parent
115ca0da0f
commit
76a603104d
2 changed files with 11 additions and 5 deletions
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
|
Loading…
Add table
Reference in a new issue