mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
49 lines
601 B
TypeScript
49 lines
601 B
TypeScript
import {
|
|
IConnections,
|
|
IDataObject,
|
|
INode,
|
|
IWorkflowSettings,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
IWorkflowDb,
|
|
} from '../../';
|
|
|
|
import {
|
|
Column,
|
|
Entity,
|
|
ObjectID,
|
|
ObjectIdColumn,
|
|
} from "typeorm";
|
|
|
|
@Entity()
|
|
export class WorkflowEntity implements IWorkflowDb {
|
|
|
|
@ObjectIdColumn()
|
|
id: ObjectID;
|
|
|
|
@Column()
|
|
name: string;
|
|
|
|
@Column()
|
|
active: boolean;
|
|
|
|
@Column('json')
|
|
nodes: INode[];
|
|
|
|
@Column('json')
|
|
connections: IConnections;
|
|
|
|
@Column()
|
|
createdAt: number;
|
|
|
|
@Column()
|
|
updatedAt: number;
|
|
|
|
@Column('json')
|
|
settings?: IWorkflowSettings;
|
|
|
|
@Column('json')
|
|
staticData?: IDataObject;
|
|
}
|