chore: add saml_session_id property in access token
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
export async function up(knex) {
|
||||
return knex.schema.table('access_tokens', (table) => {
|
||||
table.string('saml_session_id').nullable();
|
||||
});
|
||||
}
|
||||
|
||||
export async function down(knex) {
|
||||
return knex.schema.table('access_tokens', (table) => {
|
||||
table.dropColumn('saml_session_id');
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user