Updated User-Info Command

This commit is contained in:
Ahmad 2024-12-15 18:18:09 -05:00
parent 82f354db1c
commit 84738bb752
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
5 changed files with 76 additions and 31 deletions

View file

@ -4,4 +4,6 @@ export const memberTable = pgTable('members', {
id: integer().primaryKey().generatedAlwaysAsIdentity(),
discordId: varchar('discord_id').notNull().unique(),
discordUsername: varchar('discord_username').notNull(),
numberOfWarnings: integer('number_warnings').notNull().default(0),
numberOfBans: integer('number_bans').notNull().default(0),
});