refactor(userInfo): store full claims

Signed-off-by: Phil Kuang <pkuang@factset.com>
This commit is contained in:
Phil Kuang
2024-06-07 16:26:02 -04:00
parent 3e823d3e14
commit 79b0b1f3d3
9 changed files with 109 additions and 89 deletions
@@ -33,6 +33,11 @@ exports.up = async function up(knex) {
.text('user_info', 'longtext')
.notNullable()
.comment('User info blob, JSON serialized');
table
.timestamp('exp')
.notNullable()
.comment('Expiration timestamp of the user info');
});
};