Disable transactions

This commit is contained in:
Fang-Pen Lin
2026-01-06 20:42:26 -08:00
parent 5fdd188324
commit 839d75ac94
3 changed files with 9 additions and 0 deletions

View File

@@ -20,3 +20,6 @@ export async function down(knex: Knex): Promise<void> {
DROP INDEX IF EXISTS idx_identity_access_tokens_revoked
`);
}
const config = { transaction: false };
export { config };

View File

@@ -22,3 +22,6 @@ export async function down(knex: Knex): Promise<void> {
DROP INDEX IF EXISTS idx_identity_access_tokens_num_uses_with_limit
`);
}
const config = { transaction: false };
export { config };

View File

@@ -26,3 +26,6 @@ export async function down(knex: Knex): Promise<void> {
DROP INDEX IF EXISTS idx_identity_access_tokens_expiration
`);
}
const config = { transaction: false };
export { config };