feature/#34-backup-&-import #57

Merged
jkeffects merged 24 commits from feature/#34-backup-&-import into develop 2025-02-03 10:08:19 +00:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 2cee8b5119 - Show all commits

View file

@ -18,6 +18,9 @@ export class calendarType {
@Column({ type: "varchar", length: 255, nullable: true, default: null })
passphrase: string | null;
@Column({ type: "varchar", length: 255, nullable: false, default: "" })
externalPrefix: string;
@Column({ type: "boolean", default: false })
sendToWebpage: boolean;

View file

@ -9,6 +9,7 @@ export const calendar_type_table = new Table({
{ name: "nscdr", type: getTypeByORM("boolean"), isNullable: false, default: false },
{ name: "color", type: getTypeByORM("varchar"), length: "255", isNullable: false },
{ name: "passphrase", type: getTypeByORM("varchar"), length: "255", isNullable: true },
{ name: "externalPrefix", type: getTypeByORM("varchar"), length: "255", isNullable: false, default: "''" },
{ name: "sendToWebpage", type: getTypeByORM("boolean"), isNullable: false, default: false },
],
});