Change the way stuff works with launcher endpoint

This commit is contained in:
2025-11-03 10:06:32 -07:00
parent 642aebad98
commit c2cebfd53e
4 changed files with 49 additions and 10 deletions

View File

@@ -18,7 +18,8 @@ export const launcherVersions = mysqlTable('launcherversions', {
executables: text('executables').notNull(),
hidden: boolean('hidden').notNull().default(true),
game: int('game').notNull().default(0).references(() => launcherGames.id),
place: int('place').notNull().default(0)
place: int('place').notNull().default(0),
sha512sums: text('sha512sums').notNull().default("[]")
})
export const launcherUpdates = mysqlTable('launcherupdates', {