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

BAH-1911|Added changeset to create reports user and map to Reports-Ap… #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
31 changes: 31 additions & 0 deletions openmrs/migrations/liquibase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,37 @@
INSERT INTO location_tag_map(location_id, location_tag_id) VALUES(@location_id, @location_tag_id);
</sql>
</changeSet>
<changeSet id="Reports-user-1612023-BAH-1911-defaultconfig" author="bahmni">
<preConditions onFail="MARK_RAN">
<sqlCheck expectedResult="0">
select count(*) from users where username='reports-user';
</sqlCheck>
</preConditions>
<comment>Creating a openmrs user for reports</comment>
<sql>
SET @puuid = uuid();
INSERT INTO person(birthdate_estimated, dead, creator, date_created, uuid) VALUES(0, 0, 1, now(), @puuid);

SELECT person_id INTO @person_id from person where uuid = @puuid;

INSERT INTO person_name(person_id, preferred, given_name, family_name, creator, date_created, uuid) VALUES(@person_id, 1, 'Reports', 'User', 1, now(), @puuid);

INSERT INTO users(system_id, creator, date_created, person_id, uuid, username,password,salt)
VALUES ('Reports User', 1, now(),@person_id, uuid(), 'reports-user','29171af2d2cc6b48ab011c6387daa8516960edd0a7fa4e8bc6eaf1aab1d3d15443a82213fb0d11b3071ca73d45f719d885b2fdabcfef03b54b3102af450cd771','6bc56cf15a664f951134af3451ac806e746215fa3e482b72f08a911e848962bee8b124e672f3cbe8dc7040dc6d8e35960e24a1ffa6150af63d12ba1ce8c07fad');
</sql>
</changeSet>
<changeSet id="Reports-App-role-161202352419-BAH-1911-defaultconfig" author="bahmni">
<preConditions onFail="MARK_RAN">
<sqlCheck expectedResult="1">
select count(*) from role where role = 'Reports-App';
</sqlCheck>
</preConditions>
<comment>Map 'reports-user' user to new roles</comment>
<sql>
select user_id into @id from users where username = 'reports-user';
INSERT IGNORE INTO user_role VALUES (@id, 'Reports-App');
</sql>
</changeSet>
<include file ="addObsPathSplitterProperty.xml"/>
<include file ="addMoreObsSplitterProperty.xml"/>
<include file ="addMultiSelectObsSplitterProperty.xml"/>
Expand Down