From 7e403aae92166de6e83a5ab39738ea8ffe6eb713 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 14 Apr 2025 15:21:10 +0300 Subject: further mysql/DB_TYPE related cleanup --- classes/Db_Migrations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes/Db_Migrations.php') 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; -- cgit v1.2.3-54-g00ecf