mirror of
https://github.com/n8n-io/n8n
synced 2026-04-26 13:15:25 +02:00
11 lines
176 B
Plaintext
11 lines
176 B
Plaintext
import { BaseEntity, Column, Entity } from '@n8n/typeorm';
|
|
|
|
@Entity()
|
|
export class MyFeatureEntity extends BaseEntity {
|
|
@Column()
|
|
name: string;
|
|
|
|
@Column()
|
|
count: number;
|
|
}
|