chore: cleanup a little bit more 🎉

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

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-09-09 13:50:38 +02:00
parent ec6cb6bce2
commit c2afe12dfd
6 changed files with 29 additions and 38 deletions
@@ -44,12 +44,12 @@ exports.up = async function up(knex) {
.comment('The name of the client, should be human readable');
table
.text('response_types')
.text('response_types', 'longtext')
.notNullable()
.comment('JSON array of supported response types');
table
.text('grant_types')
.text('grant_types', 'longtext')
.notNullable()
.comment('JSON array of supported grant types');
@@ -82,7 +82,10 @@ exports.up = async function up(knex) {
.nullable()
.comment('Backstage user entity reference');
table.text('redirect_uri').notNullable().comment('Client redirect URI');
table
.text('redirect_uri', 'longtext')
.notNullable()
.comment('Client redirect URI');
table.text('scope').nullable().comment('Requested scopes space-separated');