Remove cutOff entirely

This commit is contained in:
2025-12-20 15:45:47 -07:00
parent 2edfdf0c4f
commit b8deb30951
2 changed files with 2 additions and 3 deletions

View File

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