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

31 lines
425 B
TypeScript

import { Column, Entity, Index } from 'typeorm';
import BaseModel from './BaseModel';
import User from './User';
import Project from './Project';
@Entity({
name: "SslVerificationChallenge"
})
export default class SslVerificationChallenge extends BaseModel {
@Column()
token!: string;
@Column()
keyAuthorization!: string;
@Column()
challengeUrl!: string;
};