11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
import { Entity, PrimaryColumn, Column } from 'typeorm';
|
|
|
|
@Entity('meta')
|
|
export class MetaEntity {
|
|
@PrimaryColumn('text')
|
|
key!: string;
|
|
|
|
@Column('text', { nullable: true })
|
|
value!: string | null;
|
|
}
|