diff --git a/packages/log-server/src/db-migrations/2023-08-07-init.ts b/packages/log-server/src/db-migrations/2023-08-07-init.ts index ae005bfb..a0f833e5 100644 --- a/packages/log-server/src/db-migrations/2023-08-07-init.ts +++ b/packages/log-server/src/db-migrations/2023-08-07-init.ts @@ -219,9 +219,9 @@ export async function up(db: Kysely) { END; `.execute(trx); await trx.schema - .createIndex('logValueLogIdName') - .on('logValue') - .columns(['logId', 'name']) - .execute(); + .createIndex('logValueLogIdName') + .on('logValue') + .columns(['logId', 'name']) + .execute(); }); }