feat: Add appKey to app auth clients

This commit is contained in:
Faruk AYDIN
2024-03-26 20:49:53 +01:00
parent e3ee05d47d
commit 88754ac569
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
export async function up(knex) {
await knex.schema.table('app_auth_clients', (table) => {
table.string('app_key');
});
}
export async function down(knex) {
await knex.schema.table('app_auth_clients', (table) => {
table.dropColumn('app_key');
});
}