n8n/scripts/backend-module/my-feature.entity.template

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
176 B
Text
Raw Normal View History

import { BaseEntity, Column, Entity } from '@n8n/typeorm';
@Entity()
export class MyFeatureEntity extends BaseEntity {
@Column()
name: string;
@Column()
count: number;
}