Merge pull request #1513 from 0xi4o/feature/sticky-notes-node

FEATURE: Sticky Note node
This commit is contained in:
Ilango
2024-01-17 07:37:24 +05:30
committed by GitHub
11 changed files with 260 additions and 63 deletions
@@ -1,9 +1,9 @@
/* eslint-disable */
import { Entity, Column, CreateDateColumn, UpdateDateColumn, PrimaryGeneratedColumn } from 'typeorm'
import { IVariable } from "../../Interface";
import { IVariable } from '../../Interface'
@Entity()
export class Variable implements IVariable{
export class Variable implements IVariable {
@PrimaryGeneratedColumn('uuid')
id: string
@@ -13,10 +13,9 @@ export class Variable implements IVariable{
@Column({ nullable: true, type: 'text' })
value: string
@Column({default: 'string', type: 'text'})
@Column({ default: 'string', type: 'text' })
type: string
@CreateDateColumn()
createdDate: Date