provide ics link
This commit is contained in:
parent
8c597fd68d
commit
91c3fde688
8 changed files with 155 additions and 4 deletions
|
@ -6,6 +6,8 @@ import {
|
|||
PrimaryGeneratedColumn,
|
||||
CreateDateColumn,
|
||||
UpdateDateColumn,
|
||||
AfterUpdate,
|
||||
BeforeUpdate,
|
||||
} from "typeorm";
|
||||
import { calendarType } from "./calendarType";
|
||||
|
||||
|
@ -32,6 +34,9 @@ export class calendar {
|
|||
@Column({ type: "boolean", default: false })
|
||||
allDay: boolean;
|
||||
|
||||
@Column({ type: "int", default: 1 })
|
||||
sequence: number;
|
||||
|
||||
@CreateDateColumn()
|
||||
createdAt: Date;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue