aboutsummaryrefslogtreecommitdiff
path: root/classes/Db_Migrations.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-04-14 15:21:10 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-04-14 15:21:10 +0300
commit7e403aae92166de6e83a5ab39738ea8ffe6eb713 (patch)
treec6714eb8b826d8eae6cba141634b9a7e8f26cd80 /classes/Db_Migrations.php
parentb154bc7a10e46dc9fa0406996507c4fd410366da (diff)
further mysql/DB_TYPE related cleanup
Diffstat (limited to 'classes/Db_Migrations.php')
-rw-r--r--classes/Db_Migrations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Db_Migrations.php b/classes/Db_Migrations.php
index 62619b377..33bc64a32 100644
--- a/classes/Db_Migrations.php
+++ b/classes/Db_Migrations.php
@@ -23,7 +23,7 @@ class Db_Migrations {
}
function initialize(string $root_path, string $migrations_table, bool $base_is_latest = true, int $max_version_override = 0): void {
- $this->base_path = "$root_path/" . Config::get(Config::DB_TYPE);
+ $this->base_path = "$root_path/pgsql";
$this->migrations_path = $this->base_path . "/migrations";
$this->migrations_table = $migrations_table;
$this->base_is_latest = $base_is_latest;