Merge pull request #1138 from itflow-org/cron-scripts-move

db.sql also needs to be called from the parent directory
This commit is contained in:
wrongecho 2025-01-02 21:38:41 +00:00 committed by GitHub
commit 04def2e434
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ include "config.php";
// Import DB Schema
echo "Importing database schema...\n";
$filename = 'db.sql';
$filename = '../db.sql';
if (!file_exists($filename)) {
die("db.sql file not found.\n");
}