feat(app-config): add useOnlyPredefinedAuthClients property

This commit is contained in:
Ali BARIN
2024-12-04 10:43:43 +00:00
parent 9fd52cfed6
commit 613f744dd6
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export async function up(knex) {
return await knex.schema.alterTable('app_configs', (table) => {
table.boolean('use_only_predefined_auth_clients').defaultTo(false);
});
}
export async function down(knex) {
return await knex.schema.alterTable('app_configs', (table) => {
table.dropColumn('use_only_predefined_auth_clients');
});
}