Skip to content

Commit

Permalink
Merge pull request #602 from mozzy11/develop
Browse files Browse the repository at this point in the history
Validation Role should have acces to Validation By Test Date
  • Loading branch information
mozzy11 authored Nov 20, 2023
2 parents 6cf028f + 7daba28 commit 56fcf79
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/resources/liquibase/2.7.x.x/add_validation_by_date.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,18 @@
<column name="is_active" value="true"/>
</insert>
</changeSet>
<changeSet author="moses_mutesa" id="2">
<preConditions onFail="MARK_RAN">
<sqlCheck expectedResult="0">SELECT count(*) FROM
clinlims.system_module_url WHERE url_path = '/ResultValidationByTestDate'
</sqlCheck>
</preConditions>
<comment>Add ResultValidationByTestDate module url to the ResultsValidationGeneral module</comment>
<insert schemaName="clinlims" tableName="system_module_url">
<column name="id" valueSequenceNext="system_module_url_seq" />
<column name="url_path" value="/ResultValidationByTestDate" />
<column name="system_module_id"
valueComputed="(SELECT id FROM clinlims.system_module WHERE name = 'ResultsValidationGeneral')" />
</insert>
</changeSet>
</databaseChangeLog>

0 comments on commit 56fcf79

Please sign in to comment.