You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
657 B
JavaScript
25 lines
657 B
JavaScript
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');
|