Implemented jwtcount basics
This commit is contained in:
10
migrations/20210818160424_jwtcount.js
Normal file
10
migrations/20210818160424_jwtcount.js
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
exports.up = function(knex) {
|
||||
return knex.schema.table('users', function (table) {
|
||||
table.integer("jwtcount").defaultTo(0);
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = function(knex) {
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user