mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
32 lines
554 B
TypeScript
32 lines
554 B
TypeScript
import { Column, Entity } from 'typeorm';
|
|
import BaseModel from './BaseModel';
|
|
|
|
@Entity({
|
|
name: 'UserAlerts',
|
|
})
|
|
export default class Model extends BaseModel {
|
|
@Column()
|
|
public store!: Object;
|
|
|
|
@Column()
|
|
public challenges!: Object;
|
|
|
|
@Column()
|
|
public renewOffset!: string;
|
|
|
|
@Column()
|
|
public renewStagger!: string;
|
|
|
|
@Column()
|
|
public accountKeyType!: string;
|
|
|
|
@Column()
|
|
public serverKeyType!: string;
|
|
|
|
@Column()
|
|
public subscriberEmail!: string;
|
|
|
|
@Column()
|
|
public agreeToTerms!: boolean;
|
|
}
|