diff --git a/packages/nocodb/src/meta/migrations/v2/nc_043_user_refresh_token.ts b/packages/nocodb/src/meta/migrations/v2/nc_043_user_refresh_token.ts index 1274c96a04..98e9a6b8c3 100644 --- a/packages/nocodb/src/meta/migrations/v2/nc_043_user_refresh_token.ts +++ b/packages/nocodb/src/meta/migrations/v2/nc_043_user_refresh_token.ts @@ -11,7 +11,7 @@ const up = async (knex: Knex) => { table.string('token', 255).index(); table.text('meta'); - table.timestamp('expires_at'); + table.timestamp('expires_at').index(); table.timestamps(true, true); });