WIP: Implementing /nag, /unnag, /checkin

This commit is contained in:
2025-07-04 10:36:40 -04:00
parent 40bf06f288
commit e53d38e0ad
5 changed files with 269 additions and 5 deletions

View File

@@ -13,11 +13,8 @@ export class GuildSetting extends Model {
GuildSetting.init(
{
guildId: {
type: STRING,
primaryKey: true,
},
key: { type: STRING, primaryKey: true },
guildId: { type: STRING },
key: { type: STRING },
value: { type: STRING },
},
{ sequelize: sql },