mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
15 lines
277 B
TypeScript
15 lines
277 B
TypeScript
import { Column, Entity } from '@n8n/typeorm';
|
|
import { WithStringId } from './abstract-entity';
|
|
|
|
@Entity()
|
|
export class Variables extends WithStringId {
|
|
@Column('text')
|
|
key: string;
|
|
|
|
@Column('text', { default: 'string' })
|
|
type: string;
|
|
|
|
@Column('text')
|
|
value: string;
|
|
}
|