Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinRoy committed Jan 31, 2024
1 parent 5cf4748 commit 8e7acd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/log-server/src/db-migrations/2023-08-07-init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ export async function up(db: Kysely<Database>) {
END;
`.execute(trx);
await trx.schema
.createIndex('logValueLogIdName')
.on('logValue')
.columns(['logId', 'name'])
.execute();
.createIndex('logValueLogIdName')
.on('logValue')
.columns(['logId', 'name'])
.execute();
});
}

0 comments on commit 8e7acd8

Please sign in to comment.