Execute highscores_ids_hidden migration again, cause of settings

This commit is contained in:
slawkens
2023-11-11 14:29:49 +01:00
parent c79a1d5f3a
commit d0590d2747
3 changed files with 8 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
<?php
require_once LIBS . 'Settings.php';
$query = $db->query("SELECT `id` FROM `players` WHERE (`name` = " . $db->quote("Rook Sample") . " OR `name` = " . $db->quote("Sorcerer Sample") . " OR `name` = " . $db->quote("Druid Sample") . " OR `name` = " . $db->quote("Paladin Sample") . " OR `name` = " . $db->quote("Knight Sample") . " OR `name` = " . $db->quote("Account Manager") . ") ORDER BY `id`;");
$highscores_ignored_ids = array();

5
system/migrations/38.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
// 2023-11-11
// execute highscores_ids_hidden once again, cause of settings
require __DIR__ . '/20.php';