slawkens c24c93ad79 Fix migrations upgrade and downgrade
+ Add option to disable auto migrate
2024-11-08 10:20:44 +01:00

16 lines
242 B
PHP

<?php
/**
* @var OTS_DB_MySQL $db
*/
// 2023-11-11
// execute highscores_ids_hidden once again, cause of settings
$up = function () use ($db) {
require __DIR__ . '/20.php';
};
$down = function () {
// there is no downgrade for this
};