mirror of
https://github.com/plankanban/planka.git
synced 2025-12-23 17:25:16 +03:00
feat: Invalidate access token on logout
This commit is contained in:
24
server/db/migrations/20220906094517_create_session_table.js
Normal file
24
server/db/migrations/20220906094517_create_session_table.js
Normal file
@@ -0,0 +1,24 @@
|
||||
module.exports.up = (knex) =>
|
||||
knex.schema.createTable('session', (table) => {
|
||||
/* Columns */
|
||||
|
||||
table.bigInteger('id').primary().defaultTo(knex.raw('next_id()'));
|
||||
|
||||
table.bigInteger('user_id').notNullable();
|
||||
|
||||
table.text('access_token').notNullable();
|
||||
table.text('remote_address').notNullable();
|
||||
table.text('user_agent');
|
||||
|
||||
table.timestamp('created_at', true);
|
||||
table.timestamp('updated_at', true);
|
||||
table.timestamp('deleted_at', true);
|
||||
|
||||
/* Indexes */
|
||||
|
||||
table.index('user_id');
|
||||
table.unique('access_token');
|
||||
table.index('remote_address');
|
||||
});
|
||||
|
||||
module.exports.down = (knex) => knex.schema.dropTable('session');
|
||||
Reference in New Issue
Block a user