Set migration stuff up properly (forgot to before, oops).

This commit is contained in:
flash 2018-05-16 20:36:38 +02:00
parent 56099200ba
commit 233781a0f2
2 changed files with 1 additions and 2 deletions

View file

@ -9,7 +9,7 @@ use Misuzu\DatabaseMigrationManager;
require_once __DIR__ . '/misuzu.php'; require_once __DIR__ . '/misuzu.php';
define('MSZ_MIGRATABLE_DATABASES', [ define('MSZ_MIGRATABLE_DATABASES', [
'mysql-test' => __DIR__ . '/database', 'mysql-main' => __DIR__ . '/database',
]); ]);
function migrate_log($log): void function migrate_log($log): void

View file

@ -26,7 +26,6 @@ class Application extends ApplicationBase
*/ */
private const DATABASE_CONNECTIONS = [ private const DATABASE_CONNECTIONS = [
'mysql-main', 'mysql-main',
'mysql-test',
]; ];
/** /**