Files
n8n-enterprise-unlocked/scripts/backend-module/my-feature.entity.template
2025-07-18 14:34:48 +02:00

11 lines
176 B
Plaintext

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