feat: started to add some tests for the oidc database

Signed-off-by: benjdlambert <ben@blam.sh>

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-07-02 17:45:45 +02:00
parent 6c4904102a
commit 64dc5463ba
3 changed files with 433 additions and 0 deletions
@@ -41,6 +41,11 @@ exports.up = async function up(knex) {
.notNullable()
.comment('The name of the client, should be human readable');
table
.text('redirect_uris', 'longtext')
.notNullable()
.comment('JSON array of valid redirect URIs');
table
.timestamp('created_at', { useTz: false, precision: 0 })
.notNullable()