This occurs in some setups where the app folder is not named 'app' and instead bears a different name.
robinncode/db_craft/src/Libraries/FileHandler.php line 76 can be changed from:
$targetDir = ROOTPATH . 'app/Database/Migrations/';
to:
$targetDir = APPPATH . '/Database/Migrations/';
for improved compatibility.
This occurs in some setups where the app folder is not named 'app' and instead bears a different name.
robinncode/db_craft/src/Libraries/FileHandler.php line 76 can be changed from:
$targetDir = ROOTPATH . 'app/Database/Migrations/';to:
$targetDir = APPPATH . '/Database/Migrations/';for improved compatibility.