calendar externa prefix
This commit is contained in:
parent
ee60f497fa
commit
2cee8b5119
2 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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 },
|
||||
],
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue