forked from projectbuendia/db-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e16679a
commit 163fbc4
Showing
217 changed files
with
969,839 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
2014-12-08T13:37:40Z |
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,66 @@ | ||
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) | ||
-- | ||
-- Host: localhost Database: openmrs | ||
-- ------------------------------------------------------ | ||
-- Server version 5.5.40-0+wheezy1 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `active_list` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `active_list`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `active_list` ( | ||
`active_list_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`active_list_type_id` int(11) NOT NULL, | ||
`person_id` int(11) NOT NULL, | ||
`concept_id` int(11) NOT NULL, | ||
`start_obs_id` int(11) DEFAULT NULL, | ||
`stop_obs_id` int(11) DEFAULT NULL, | ||
`start_date` datetime NOT NULL, | ||
`end_date` datetime DEFAULT NULL, | ||
`comments` varchar(255) DEFAULT NULL, | ||
`creator` int(11) NOT NULL, | ||
`date_created` datetime NOT NULL, | ||
`voided` tinyint(1) NOT NULL DEFAULT '0', | ||
`voided_by` int(11) DEFAULT NULL, | ||
`date_voided` datetime DEFAULT NULL, | ||
`void_reason` varchar(255) DEFAULT NULL, | ||
`uuid` char(38) NOT NULL, | ||
PRIMARY KEY (`active_list_id`), | ||
KEY `user_who_voided_active_list` (`voided_by`), | ||
KEY `user_who_created_active_list` (`creator`), | ||
KEY `active_list_type_of_active_list` (`active_list_type_id`), | ||
KEY `person_of_active_list` (`person_id`), | ||
KEY `concept_active_list` (`concept_id`), | ||
KEY `start_obs_active_list` (`start_obs_id`), | ||
KEY `stop_obs_active_list` (`stop_obs_id`), | ||
CONSTRAINT `active_list_type_of_active_list` FOREIGN KEY (`active_list_type_id`) REFERENCES `active_list_type` (`active_list_type_id`), | ||
CONSTRAINT `concept_active_list` FOREIGN KEY (`concept_id`) REFERENCES `concept` (`concept_id`), | ||
CONSTRAINT `person_of_active_list` FOREIGN KEY (`person_id`) REFERENCES `person` (`person_id`), | ||
CONSTRAINT `start_obs_active_list` FOREIGN KEY (`start_obs_id`) REFERENCES `obs` (`obs_id`), | ||
CONSTRAINT `stop_obs_active_list` FOREIGN KEY (`stop_obs_id`) REFERENCES `obs` (`obs_id`), | ||
CONSTRAINT `user_who_created_active_list` FOREIGN KEY (`creator`) REFERENCES `users` (`user_id`), | ||
CONSTRAINT `user_who_voided_active_list` FOREIGN KEY (`voided_by`) REFERENCES `users` (`user_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed |
Empty file.
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,42 @@ | ||
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) | ||
-- | ||
-- Host: localhost Database: openmrs | ||
-- ------------------------------------------------------ | ||
-- Server version 5.5.40-0+wheezy1 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `active_list_allergy` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `active_list_allergy`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `active_list_allergy` ( | ||
`active_list_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`allergy_type` varchar(50) DEFAULT NULL, | ||
`reaction_concept_id` int(11) DEFAULT NULL, | ||
`severity` varchar(50) DEFAULT NULL, | ||
PRIMARY KEY (`active_list_id`), | ||
KEY `reaction_allergy` (`reaction_concept_id`), | ||
CONSTRAINT `reaction_allergy` FOREIGN KEY (`reaction_concept_id`) REFERENCES `concept` (`concept_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed |
Empty file.
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,39 @@ | ||
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) | ||
-- | ||
-- Host: localhost Database: openmrs | ||
-- ------------------------------------------------------ | ||
-- Server version 5.5.40-0+wheezy1 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `active_list_problem` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `active_list_problem`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `active_list_problem` ( | ||
`active_list_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`status` varchar(50) DEFAULT NULL, | ||
`sort_weight` double DEFAULT NULL, | ||
PRIMARY KEY (`active_list_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed |
Empty file.
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,50 @@ | ||
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) | ||
-- | ||
-- Host: localhost Database: openmrs | ||
-- ------------------------------------------------------ | ||
-- Server version 5.5.40-0+wheezy1 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `active_list_type` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `active_list_type`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `active_list_type` ( | ||
`active_list_type_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`name` varchar(50) NOT NULL, | ||
`description` varchar(255) DEFAULT NULL, | ||
`creator` int(11) NOT NULL, | ||
`date_created` datetime NOT NULL, | ||
`retired` tinyint(1) NOT NULL DEFAULT '0', | ||
`retired_by` int(11) DEFAULT NULL, | ||
`date_retired` datetime DEFAULT NULL, | ||
`retire_reason` varchar(255) DEFAULT NULL, | ||
`uuid` char(38) NOT NULL, | ||
PRIMARY KEY (`active_list_type_id`), | ||
KEY `user_who_retired_active_list_type` (`retired_by`), | ||
KEY `user_who_created_active_list_type` (`creator`), | ||
CONSTRAINT `user_who_created_active_list_type` FOREIGN KEY (`creator`) REFERENCES `users` (`user_id`), | ||
CONSTRAINT `user_who_retired_active_list_type` FOREIGN KEY (`retired_by`) REFERENCES `users` (`user_id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed |
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,2 @@ | ||
1 Allergy An Allergy the Patient may have 1 2010-05-28 00:00:00 0 \N \N \N 96f4f603-6a99-11df-a648-37a07f9c90fb | ||
2 Problem A Problem the Patient may have 1 2010-05-28 00:00:00 0 \N \N \N a0c7422b-6a99-11df-a648-37a07f9c90fb |
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,57 @@ | ||
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) | ||
-- | ||
-- Host: localhost Database: openmrs | ||
-- ------------------------------------------------------ | ||
-- Server version 5.5.40-0+wheezy1 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `care_setting` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `care_setting`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `care_setting` ( | ||
`care_setting_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`name` varchar(255) NOT NULL, | ||
`description` varchar(255) DEFAULT NULL, | ||
`care_setting_type` varchar(50) NOT NULL, | ||
`creator` int(11) NOT NULL, | ||
`date_created` datetime NOT NULL, | ||
`retired` tinyint(1) NOT NULL DEFAULT '0', | ||
`retired_by` int(11) DEFAULT NULL, | ||
`date_retired` datetime DEFAULT NULL, | ||
`retire_reason` varchar(255) DEFAULT NULL, | ||
`changed_by` int(11) DEFAULT NULL, | ||
`date_changed` datetime DEFAULT NULL, | ||
`uuid` char(38) NOT NULL, | ||
PRIMARY KEY (`care_setting_id`), | ||
UNIQUE KEY `uuid` (`uuid`), | ||
UNIQUE KEY `name` (`name`), | ||
KEY `care_setting_creator` (`creator`), | ||
KEY `care_setting_retired_by` (`retired_by`), | ||
KEY `care_setting_changed_by` (`changed_by`), | ||
CONSTRAINT `care_setting_changed_by` FOREIGN KEY (`changed_by`) REFERENCES `users` (`user_id`), | ||
CONSTRAINT `care_setting_creator` FOREIGN KEY (`creator`) REFERENCES `users` (`user_id`), | ||
CONSTRAINT `care_setting_retired_by` FOREIGN KEY (`retired_by`) REFERENCES `users` (`user_id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed |
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,2 @@ | ||
1 Outpatient Out-patient care setting OUTPATIENT 1 2013-12-27 00:00:00 0 \N \N \N \N \N 6f0c9a92-6f24-11e3-af88-005056821db0 | ||
2 Inpatient In-patient care setting INPATIENT 1 2013-12-27 00:00:00 0 \N \N \N \N \N c365e560-c3ec-11e3-9c1a-0800200c9a66 |
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,41 @@ | ||
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) | ||
-- | ||
-- Host: localhost Database: openmrs | ||
-- ------------------------------------------------------ | ||
-- Server version 5.5.40-0+wheezy1 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `clob_datatype_storage` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `clob_datatype_storage`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `clob_datatype_storage` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`uuid` char(38) NOT NULL, | ||
`value` longtext NOT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `uuid` (`uuid`), | ||
UNIQUE KEY `clob_datatype_storage_uuid_index` (`uuid`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed |
Oops, something went wrong.