mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 01:24:05 -08:00
d3a1d3ffef
This reverts commit c21c8b3369
.
22 lines
777 B
TypeScript
22 lines
777 B
TypeScript
import {
|
|
MigrationInterface,
|
|
QueryRunner,
|
|
} from 'typeorm';
|
|
|
|
import * as config from '../../../../config';
|
|
|
|
export class WebhookModel1592447867632 implements MigrationInterface {
|
|
name = 'WebhookModel1592447867632';
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
const tablePrefix = config.get('database.tablePrefix');
|
|
|
|
await queryRunner.query(`CREATE TABLE IF NOT EXISTS ${tablePrefix}webhook_entity (workflowId int NOT NULL, webhookPath varchar(255) NOT NULL, method varchar(255) NOT NULL, node varchar(255) NOT NULL, PRIMARY KEY (webhookPath, method)) ENGINE=InnoDB`);
|
|
}
|
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
const tablePrefix = config.get('database.tablePrefix');
|
|
await queryRunner.query(`DROP TABLE ${tablePrefix}webhook_entity`);
|
|
}
|
|
}
|