WTF DOES IT WANT FROM ME

This commit is contained in:
2025-11-06 15:34:41 -07:00
parent c3090b260a
commit 01e0c233d7
4 changed files with 5 additions and 5 deletions

View File

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