Skip to content

Commit

Permalink
Campaign: schema update
Browse files Browse the repository at this point in the history
  • Loading branch information
andi-huber committed Jun 13, 2024
1 parent 7f832bc commit 4b23a04
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions globodiet/schema/src/main/resources/gd-survey.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ survey.dom.Campaign:
required: false
unique: false
multiLine: 24
hiddenWhere: ALL_TABLES
description: |
Yaml formatted interview data corrections.
survey.dom.Survey:
Expand Down
2 changes: 1 addition & 1 deletion globodiet/schema/src/main/resources/survey/Campaign.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Campaign:
column-type: nvarchar(64000)
required: false
unique: false
hiddenWhere: TABLES
hiddenWhere: ALL_TABLES
multiLine: 24
description: |
Yaml formatted interview data corrections.
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ public class Campaign implements Cloneable<Campaign>, HasSecondaryKey<Campaign>
fieldSetId = "details",
sequence = "4",
describedAs = "Detailed information for this campaign.",
multiLine = 4,
hidden = Where.NOWHERE
hidden = Where.NOWHERE,
multiLine = 4
)
@Column(
name = "DESCRIPTION",
Expand All @@ -189,8 +189,8 @@ public class Campaign implements Cloneable<Campaign>, HasSecondaryKey<Campaign>
fieldSetId = "details",
sequence = "5",
describedAs = "Yaml formatted interview data corrections.",
multiLine = 24,
hidden = Where.NOWHERE
hidden = Where.ALL_TABLES,
multiLine = 24
)
@Column(
name = "CORRECTION",
Expand Down Expand Up @@ -231,8 +231,8 @@ public Campaign copy() {
snapshot = Snapshot.EXCLUDED
)
@PropertyLayout(
navigable = Navigable.PARENT,
hidden = Where.EVERYWHERE
hidden = Where.EVERYWHERE,
navigable = Navigable.PARENT
)
@NotPersistent
public Campaign.Manager getNavigableParent() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ public Survey copy() {
snapshot = Snapshot.EXCLUDED
)
@PropertyLayout(
navigable = Navigable.PARENT,
hidden = Where.EVERYWHERE
hidden = Where.EVERYWHERE,
navigable = Navigable.PARENT
)
@NotPersistent
public Survey.Manager getNavigableParent() {
Expand Down

0 comments on commit 4b23a04

Please sign in to comment.