From 902dcb00ea5f9d1fac9ffc589e29031c578edcd4 Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Mon, 5 May 2025 14:02:49 -0400 Subject: [PATCH] this should also be lowercase --- db/populateDefaults.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/db/populateDefaults.ts b/db/populateDefaults.ts index 44b4162..9265a7f 100644 --- a/db/populateDefaults.ts +++ b/db/populateDefaults.ts @@ -11,24 +11,24 @@ console.log('Insertion done'); console.log('Attempting to insert default commands into command_cnt'); const commands = [ - 'ping', - 'rip', - 'rollhelp', + 'api', + 'audit', + 'emojis', + 'heatmap', 'help', 'info', - 'version', - 'report', - 'stats', - 'roll', - 'emojis', - 'api', - 'privacy', 'mention', - 'audit', - 'heatmap', - 'rolldecorators', - 'opt-out', 'opt-in', + 'opt-out', + 'ping', + 'privacy', + 'rip', + 'report', + 'roll', + 'rolldecorators', + 'rollhelp', + 'stats', + 'version', ]; for (const command of commands) { await dbClient.execute('INSERT INTO command_cnt(command) values(?)', [command]).catch((e) => {