Files
n8n-enterprise-unlocked/packages/cli/src/databases/migrations/sqlite/1592445003908-WebhookModel.ts
T

14 lines
595 B
TypeScript

import type { MigrationContext, ReversibleMigration } from '@db/types';
export class WebhookModel1592445003908 implements ReversibleMigration {
async up({ queryRunner, tablePrefix }: MigrationContext) {
await queryRunner.query(
`CREATE TABLE IF NOT EXISTS ${tablePrefix}webhook_entity ("workflowId" integer NOT NULL, "webhookPath" varchar NOT NULL, "method" varchar NOT NULL, "node" varchar NOT NULL, PRIMARY KEY ("webhookPath", "method"))`,
);
}
async down({ queryRunner, tablePrefix }: MigrationContext) {
await queryRunner.query(`DROP TABLE ${tablePrefix}webhook_entity`);
}
}