-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #247 from OHDSI/Release-1.12.2
Release 1.12.2
- Loading branch information
Showing
9 changed files
with
43 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/main/resources/db/migration/V20180622132100__remove-webapi-settings.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DELETE FROM system_settings USING system_settings_groups sg | ||
WHERE group_id = sg.id AND sg.name = 'atlas'; | ||
|
||
DELETE FROM system_settings_groups WHERE name = 'atlas'; |
4 changes: 4 additions & 0 deletions
4
src/main/resources/db/migration/V20180628170044__revert-cohort-settings.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
INSERT INTO system_settings_groups (label, name) VALUES ('Atlas WebAPI', 'atlas') ON CONFLICT (name) DO NOTHING; | ||
|
||
INSERT INTO system_settings (group_id, label, name, value, type) VALUES ((SELECT id FROM system_settings_groups WHERE name = 'atlas'), 'Cohort patients log enabled', 'cohorts.result.summaryEnabled', null, 'checkbox') ON CONFLICT (name) DO NOTHING; | ||
INSERT INTO system_settings (group_id, label, name, value, type) VALUES ((SELECT id FROM system_settings_groups WHERE name = 'atlas'), 'Cohort patients count enable', 'cohorts.result.countEnabled', null, 'checkbox') ON CONFLICT (name) DO NOTHING; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters