feat: Remove app config id from app auth clients

This commit is contained in:
Faruk AYDIN
2024-03-26 20:58:51 +01:00
parent abc64d769c
commit a00d3a2c5e

View File

@@ -0,0 +1,15 @@
export async function up(knex) {
await knex.schema.table('app_auth_clients', (table) => {
table.dropColumn('app_config_id');
});
}
export async function down(knex) {
await knex.schema.table('app_auth_clients', (table) => {
table
.uuid('app_config_id')
.notNullable()
.references('id')
.inTable('app_configs');
});
}