Rename character expedition lockouts table

This commit is contained in:
hg
2020-10-10 18:49:03 -04:00
parent 3a1eb51890
commit 3ed7215a92
4 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -287,7 +287,7 @@ void ExpeditionDatabase::PurgeExpiredExpeditions()
void ExpeditionDatabase::PurgeExpiredCharacterLockouts()
{
std::string query = SQL(
DELETE FROM expedition_character_lockouts
DELETE FROM character_expedition_lockouts
WHERE expire_time <= NOW();
);