Apply prettier
This commit is contained in:
parent
74602484b2
commit
9b114212c0
|
|
@ -1,9 +1,9 @@
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import { Entity, Column, CreateDateColumn, UpdateDateColumn, PrimaryGeneratedColumn } from 'typeorm'
|
import { Entity, Column, CreateDateColumn, UpdateDateColumn, PrimaryGeneratedColumn } from 'typeorm'
|
||||||
import { IVariable } from "../../Interface";
|
import { IVariable } from '../../Interface'
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class Variable implements IVariable{
|
export class Variable implements IVariable {
|
||||||
@PrimaryGeneratedColumn('uuid')
|
@PrimaryGeneratedColumn('uuid')
|
||||||
id: string
|
id: string
|
||||||
|
|
||||||
|
|
@ -13,10 +13,9 @@ export class Variable implements IVariable{
|
||||||
@Column({ nullable: true, type: 'text' })
|
@Column({ nullable: true, type: 'text' })
|
||||||
value: string
|
value: string
|
||||||
|
|
||||||
@Column({default: 'string', type: 'text'})
|
@Column({ default: 'string', type: 'text' })
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
|
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
createdDate: Date
|
createdDate: Date
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue