Skip to content

Commit 2d34f61

Browse files
committed
fixed path to initial sql
1 parent ba5b1ac commit 2d34f61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/server/setup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
try {
3131
$db->query("CREATE DATABASE IF NOT EXISTS hashtopolis;");
3232
$db->query("USE hashtopolis;");
33-
$db->query(file_get_contents($envPath . "src/install/hashtopolis.sql"));
33+
$db->query(file_get_contents($envPath . "src/migrations/mysql/20251127000000_initial.sql"));
3434
}
3535
catch (PDOException $e) {
3636
fwrite(STDERR, "Failed to initialize database: " . $e->getMessage());

0 commit comments

Comments
 (0)