From 4889a31e9245148453af8e91d9062ab3dfdfa800 Mon Sep 17 00:00:00 2001 From: Ferry Ariawan Date: Sun, 16 May 2021 02:40:48 +0700 Subject: [PATCH] Fixing & Improvement --- configs/Phinx.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/Phinx.php b/configs/Phinx.php index 7958d96..18172b1 100644 --- a/configs/Phinx.php +++ b/configs/Phinx.php @@ -12,8 +12,8 @@ return [ 'paths' => [ - 'migrations' => '%%PHINX_CONFIG_DIR%%/Databases', - 'seeds' => '%%PHINX_CONFIG_DIR%%/Seeds' + 'migrations' => __DIR__.'/../app/Migrations/Databases', + 'seeds' => __DIR__.'/../app/Migrations/Seeds' ], 'environments' => [ 'default_migration_table' => 'phinxlog',