Add a default value for sha512sum in loader db

This commit is contained in:
2025-11-03 19:35:32 -07:00
parent 95435ce693
commit 567c97f19d
2 changed files with 3 additions and 3 deletions

View File

@@ -30,5 +30,5 @@ export const launcherUpdates = mysqlTable('launcherupdates', {
executables: text('executables').notNull(),
hidden: boolean('hidden').notNull().default(true),
place: int('place').notNull().default(0),
sha512sums: text('sha512sums').notNull()
sha512sums: text('sha512sums').notNull().default("[]")
})