add sorting to protocol agenda, decision and votings

This commit is contained in:
Julian Krauser 2025-03-21 09:46:29 +01:00
parent 4b6f0b34df
commit 2e5b345daa
22 changed files with 138 additions and 16 deletions

View file

@ -12,6 +12,9 @@ export class protocolAgenda {
@Column({ type: "text", default: "" })
context: string;
@Column({ type: "int", default: 0 })
sort: number;
@Column()
protocolId: number;

View file

@ -12,6 +12,9 @@ export class protocolDecision {
@Column({ type: "text", default: "" })
context: string;
@Column({ type: "int", default: 0 })
sort: number;
@Column()
protocolId: number;

View file

@ -21,6 +21,9 @@ export class protocolVoting {
@Column({ type: "int", default: 0 })
against: number;
@Column({ type: "int", default: 0 })
sort: number;
@Column()
protocolId: number;