Implemented jwtcount basics

This commit is contained in:
2021-08-18 16:09:34 +02:00
parent 75473cabe7
commit 48cc380504
2 changed files with 35 additions and 9 deletions

View 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) {
};