feat: add remoteWebhookId in Flow

This commit is contained in:
Ali BARIN
2022-12-14 20:00:08 +01:00
parent 9a55333ce8
commit 0970db3295
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { Knex } from 'knex';
export async function up(knex: Knex): Promise<void> {
return knex.schema.table('flows', (table) => {
table.string('remote_webhook_id');
});
}
export async function down(knex: Knex): Promise<void> {
return knex.schema.table('flows', (table) => {
table.dropColumn('remote_webhook_id');
});
}