/* eslint-disable */ import { Entity, Column, CreateDateColumn, UpdateDateColumn, PrimaryGeneratedColumn } from 'typeorm' import { IVariable } from '../../Interface' @Entity() export class Variable implements IVariable { @PrimaryGeneratedColumn('uuid') id: string @Column() name: string @Column({ nullable: true, type: 'text' }) value: string @Column({ default: 'string', type: 'text' }) type: string @Column({ type: 'timestamp' }) @CreateDateColumn() createdDate: Date @Column({ type: 'timestamp' }) @UpdateDateColumn() updatedDate: Date @Column({ nullable: false, type: 'text' }) workspaceId: string }