Browse Source

refactor: add index

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/8027/head
Pranav C 8 months ago
parent
commit
e356f30a0a
  1. 2
      packages/nocodb/src/meta/migrations/v2/nc_043_user_refresh_token.ts

2
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);
});

Loading…
Cancel
Save