Browse Source

fix migration

pull/1711/head
Bernd Storath 5 months ago
parent
commit
b62e0ec284
  1. 4
      src/server/api/setup/migrate.post.ts

4
src/server/api/setup/migrate.post.ts

@ -18,8 +18,8 @@ export default defineSetupEventHandler('migrate', async ({ event }) => {
clients: z.record( clients: z.record(
z.string(), z.string(),
z.object({ z.object({
// not used // not used, breaks compatibility with older versions
id: z.string(), id: z.string().optional(),
name: z.string(), name: z.string(),
address: z.string(), address: z.string(),
privateKey: z.string(), privateKey: z.string(),

Loading…
Cancel
Save