From ecf96b427b24d76e0accc8015e8aa262c5e844d2 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 23 Dec 2024 00:50:50 -0500 Subject: [PATCH] explicitly specify replace into fields --- nomen/main.py | 5 +---- nomen/settings.py | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/nomen/main.py b/nomen/main.py index ab00792..241f258 100644 --- a/nomen/main.py +++ b/nomen/main.py @@ -78,10 +78,7 @@ class Nomen(Bot): return prefix async def set_guild_prefix(self, guild: Guild, prefix): - await self.db.execute( - "REPLACE INTO guilds VALUES(?, ?)", - (guild.id, prefix), - ) + await self.db.execute("REPLACE INTO guilds (guild_id, prefix) VALUES(?, ?)", (guild.id, prefix)) self.prefixes[guild.id] = prefix async def start(self, *args, **kwargs): diff --git a/nomen/settings.py b/nomen/settings.py index c88274a..ce6c5fa 100644 --- a/nomen/settings.py +++ b/nomen/settings.py @@ -91,7 +91,7 @@ You may want to `{ctx.clean_prefix}nomen export` first""" f"You have now opted-out and will no longer trigger or receive notifications. To opt back in, run `{ctx.clean_prefix}nomen opt-in`" ) - await self.bot.db.execute("REPLACE INTO users VALUES(?, 1)", (ctx.author.id,)) + await self.bot.db.execute("REPLACE INTO users (user_id, disabled) VALUES(?, 1)", (ctx.author.id,)) await self.bot.db.commit() @nomen.command(name="opt-in") @@ -106,5 +106,5 @@ You may want to `{ctx.clean_prefix}nomen export` first""" f"You have opted back in and will now trigger and receive notifications. To opt out, run `{ctx.clean_prefix}nomen opt-out`" ) - await self.bot.db.execute("REPLACE INTO users VALUES(?, 0)", (ctx.author.id,)) + await self.bot.db.execute("REPLACE INTO users (user_id, disabled) VALUES(?, 0)", (ctx.author.id,)) await self.bot.db.commit()