oneuptime/Common/Models/IncidentSMSAction.ts

58 lines
769 B
TypeScript
Raw Normal View History

2022-04-27 19:38:55 +00:00
import { Column, Entity, Index } from 'typeorm';
2022-04-26 20:34:05 +00:00
import BaseModel from './BaseModel';
2022-04-27 08:22:16 +00:00
import User from './User';
import Project from './Project';
2022-04-27 19:38:55 +00:00
@Entity({
name: "UserAlerts"
})
export default class Model extends BaseModel{
@Column()
2022-04-29 19:52:23 +00:00
incident: { type: string, ref: 'Incident', index!: true }; //Which project this incident belongs to.
2022-04-27 19:38:55 +00:00
@Column()
user!: User; // Which User will perfom this action.
@Column()
number!: string;
@Column()
name!: string;
@Column()
resolved!: boolean;
@Column()
acknowledged!: boolean;
@Column()
createdAt!: {
@Column()
type!: Date;
@Column()
default!: Date.now;
@Column()
expires!: 86400;
};
2022-04-26 20:24:24 +00:00
2022-04-26 20:34:05 +00:00
2022-04-27 19:38:55 +00:00
@Column()
deletedByUser!: User;
2022-04-26 20:34:05 +00:00
}
2022-04-26 20:24:24 +00:00