add excused state to protocol presence
This commit is contained in:
parent
a4b26013a7
commit
4dd6fa6d8a
5 changed files with 28 additions and 0 deletions
|
@ -13,6 +13,9 @@ export class protocolPresence {
|
|||
@Column({ type: "boolean", default: false })
|
||||
absent: boolean;
|
||||
|
||||
@Column({ type: "boolean", default: true })
|
||||
excused: boolean;
|
||||
|
||||
@ManyToOne(() => member, {
|
||||
nullable: false,
|
||||
onDelete: "CASCADE",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue