mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 23:57:19 +00:00
11 lines
176 B
Text
11 lines
176 B
Text
|
|
import { BaseEntity, Column, Entity } from '@n8n/typeorm';
|
||
|
|
|
||
|
|
@Entity()
|
||
|
|
export class MyFeatureEntity extends BaseEntity {
|
||
|
|
@Column()
|
||
|
|
name: string;
|
||
|
|
|
||
|
|
@Column()
|
||
|
|
count: number;
|
||
|
|
}
|