Skip to content

Commit

Permalink
Allow rating scheme items to mandate comments
Browse files Browse the repository at this point in the history
- updated the DDL

#CTCTOWALTZ-2827
finos#6708
  • Loading branch information
db-waltz committed Jan 17, 2024
1 parent 2bc4a9e commit 3dc030c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions waltz-schema/src/main/resources/liquibase/db.changelog-1.57.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,20 @@
tableName="software_version" />
</changeSet>


<changeSet id="20240117-6708-2"
author="davidwatkins73">
<comment>6708: Allow assessments to require mandatory comments</comment>
<addColumn tableName="rating_scheme_item">
<column name="requires_comment"
type="boolean"
defaultValueBoolean="false">
<constraints nullable="false"/>
</column>
</addColumn>
<setColumnRemarks tableName="rating_scheme_item"
columnName="requires_comment"
remarks="Indicates if the user must provide a comment when setting this option. Only valid if the assessment/item is not-readonly and is user-selectable"/>
</changeSet>

</databaseChangeLog>

0 comments on commit 3dc030c

Please sign in to comment.