blob: 70593fc752a9689ac54d7426b9b5d77f34ee4238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
exports.up = function(knex) {
return knex.schema.createTable('tokens', function(table) {
table.increments();
table.integer('user_id').unsigned().notNullable();
table.foreign('user_id').references('users.id');
table.enu('type', [ 'session' ]).notNullable();
table.string('value').notNullable();
table.timestamps(true, true);
});
};
exports.down = function(knex) {
return knex.schema.dropTable('tokens');
};
|