oneuptime/Common/Models/Zapier.ts
Simon Larsen f0c0715f36
fix
2022-04-29 20:52:23 +01:00

23 lines
362 B
TypeScript
Executable File

import { Column, Entity, Index } from 'typeorm';
import BaseModel from './BaseModel';
import User from './User';
import Project from './Project';
@Entity({
name: "Zapier"
})
export default class Zapier extends BaseModel {
@Column()
project!: Project;
@Column()
url!: URL;
@Column()
type!: string;
@Column()
monitors!: [String];
}