add sorting to protocol agenda, decision and votings
This commit is contained in:
parent
4b6f0b34df
commit
2e5b345daa
22 changed files with 138 additions and 16 deletions
|
@ -12,6 +12,9 @@ export class protocolAgenda {
|
|||
@Column({ type: "text", default: "" })
|
||||
context: string;
|
||||
|
||||
@Column({ type: "int", default: 0 })
|
||||
sort: number;
|
||||
|
||||
@Column()
|
||||
protocolId: number;
|
||||
|
||||
|
|
|
@ -12,6 +12,9 @@ export class protocolDecision {
|
|||
@Column({ type: "text", default: "" })
|
||||
context: string;
|
||||
|
||||
@Column({ type: "int", default: 0 })
|
||||
sort: number;
|
||||
|
||||
@Column()
|
||||
protocolId: number;
|
||||
|
||||
|
|
|
@ -21,6 +21,9 @@ export class protocolVoting {
|
|||
@Column({ type: "int", default: 0 })
|
||||
against: number;
|
||||
|
||||
@Column({ type: "int", default: 0 })
|
||||
sort: number;
|
||||
|
||||
@Column()
|
||||
protocolId: number;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue