mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 15:49:10 +00:00
28 lines
340 B
TypeScript
Executable File
28 lines
340 B
TypeScript
Executable File
import { Column, Entity, Index } from 'typeorm';
|
|
import BaseModel from './BaseModel';
|
|
import User from './User';
|
|
import Project from './Project';
|
|
@Entity({
|
|
name: "UserAlerts"
|
|
})
|
|
export default class Model extends BaseModel{
|
|
|
|
@Column()
|
|
project!: Project;
|
|
|
|
@Column()
|
|
message!: string;
|
|
|
|
@Column()
|
|
icon!: string
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|