Add developer name to game data

This commit is contained in:
2025-11-01 20:38:45 -07:00
parent b6d4f45ad8
commit e6b63b585f
2 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ export const launcherGames = mysqlTable('launchergames', {
name: text('name').notNull(),
official: boolean('official').notNull().default(false),
verified: boolean('verified').notNull().default(false),
developer: varchar('developer', { length: 32 }),
cutOff: int('cutOff').notNull().default(-1)
})