chore: codereview comments

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-11-18 11:12:37 +01:00
parent a9315d0f77
commit eb279cbe7b
2 changed files with 27 additions and 1 deletions
@@ -21,7 +21,7 @@
*/
exports.up = async function up(knex) {
await knex.schema.alterTable('oauth_authorization_sessions', table => {
table.text('state').nullable().alter();
table.text('state', 'longtext').nullable().alter();
});
};