mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 15:49:10 +00:00
24 lines
281 B
TypeScript
Executable File
24 lines
281 B
TypeScript
Executable File
import { Column, Entity, Index } from 'typeorm';
|
|
import BaseModel from './BaseModel';
|
|
|
|
|
|
@Entity({
|
|
name: "GlobalConfig"
|
|
})
|
|
export default class GlobalConfig extends BaseModel {
|
|
|
|
@Column()
|
|
name!: string;
|
|
|
|
@Column()
|
|
value!: Object;
|
|
|
|
@Column()
|
|
iv!: Buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|