diff --git a/openmrs/migrations/liquibase.xml b/openmrs/migrations/liquibase.xml
index ffefbfce7..7e44c64ad 100644
--- a/openmrs/migrations/liquibase.xml
+++ b/openmrs/migrations/liquibase.xml
@@ -85,8 +85,19 @@
INSERT INTO location_tag_map(location_id, location_tag_id) VALUES(@location_id, @location_tag_id);
-
-
-
-
+
+
+
+ SELECT count(*) from user_role where user_id = (select user_id from users where username='superman') and role = 'OT: FullAccess';
+
+
+ Add OT role for superman user
+
+ insert into user_role(user_id, role) values((select user_id from users where username='superman'), 'OT: FullAccess');
+
+
+
+
+
+