Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Validation Role should have acces to Validation By Test Date #602

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Loading