Fix migrations upgrade and downgrade

+ Add option to disable auto migrate
This commit is contained in:
slawkens
2024-11-08 10:20:44 +01:00
parent 8aff9f36fb
commit c24c93ad79
7 changed files with 22 additions and 7 deletions

View File

@@ -1,8 +1,11 @@
<?php
/**
* @var OTS_DB_MySQL $db
*/
// 2023-11-11
// execute highscores_ids_hidden once again, cause of settings
$up = function () {
$up = function () use ($db) {
require __DIR__ . '/20.php';
};