n8n
Version:
n8n Workflow Automation Tool
6 lines (5 loc) • 354 B
TypeScript
import type { MigrationContext, ReversibleMigration } from '../../../databases/types';
export declare class DisallowOrphanExecutions1693554410387 implements ReversibleMigration {
up({ escape, schemaBuilder: { addNotNull }, runQuery }: MigrationContext): Promise<void>;
down({ schemaBuilder: { dropNotNull } }: MigrationContext): Promise<void>;
}