1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:46:00 +00:00

wip for db_migrations for core schema

This commit is contained in:
Andrew Dolgov
2021-03-04 08:30:52 +03:00
parent 921569e5da
commit c0fb0a5ec0
286 changed files with 102 additions and 23 deletions

View File

@@ -145,10 +145,8 @@
require_once "errorhandler.php";
}
if (!isset($options['update-schema'])) {
if (Db_Updater::is_update_required()) {
die("Schema version is wrong, please upgrade the database (--update-schema).\n");
}
if (!isset($options['update-schema']) && Config::is_migration_needed()) {
die("Schema version is wrong, please upgrade the database (--update-schema).\n");
}
Debug::set_enabled(true);
@@ -372,7 +370,32 @@
}
if (isset($options["update-schema"])) {
Debug::log("Checking for updates (" . Config::get(Config::DB_TYPE) . ")...");
if (Config::is_migration_needed()) {
if ($options["update-schema"] != "force-yes") {
Debug::log("Type 'yes' to continue.");
if (read_stdin() != 'yes')
exit;
} else {
Debug::log("Proceeding to update without confirmation...");
}
if (!isset($options["log-level"])) {
Debug::set_loglevel(Debug::$LOG_VERBOSE);
}
$migrations = Config::get_migrations();
Debug::log("Migrating schema to version " . $migrations->get_max_version());
$migrations->migrate();
} else {
Debug::log("Database schema is already at latest version.");
}
/*Debug::log("Checking for updates (" . Config::get(Config::DB_TYPE) . ")...");
$updater = new Db_Updater(Db::pdo(), Config::get(Config::DB_TYPE));
@@ -412,7 +435,7 @@
Debug::log("All done.");
} else {
Debug::log("Database schema is already at latest version.");
}
} */
}