n8n/packages/cli/src/databases/mysqldb/WebhookEntity.ts

26 lines
313 B
TypeScript
Raw Normal View History

2020-05-27 16:32:49 -07:00
import {
Column,
Entity,
2020-05-30 16:03:58 -07:00
PrimaryColumn,
2020-05-27 16:32:49 -07:00
} from 'typeorm';
import {
IWebhookDb,
} from '../../Interfaces';
@Entity()
export class WebhookEntity implements IWebhookDb {
@Column()
workflowId: number;
2020-05-30 16:03:58 -07:00
@PrimaryColumn()
2020-05-27 16:32:49 -07:00
webhookPath: string;
2020-05-30 16:03:58 -07:00
@PrimaryColumn()
2020-05-27 16:32:49 -07:00
method: string;
@Column()
node: string;
}