Advertisement
Guest User

Untitled

a guest
Nov 10th, 2016
1,969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 731.56 KB | None | 0 0
  1. -- MySQL dump 10.13 Distrib 5.5.53, for debian-linux-gnu (x86_64)
  2. --
  3. -- Host: localhost Database: ggrcdev
  4. -- ------------------------------------------------------
  5. -- Server version 5.5.53-0ubuntu0.14.04.1-log
  6.  
  7. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  8. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  9. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  12. /*!40103 SET TIME_ZONE='+00:00' */;
  13. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  14. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  15. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  16. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  17.  
  18. --
  19. -- Table structure for table `access_groups`
  20. --
  21.  
  22. DROP TABLE IF EXISTS `access_groups`;
  23. /*!40101 SET @saved_cs_client = @@character_set_client */;
  24. /*!40101 SET character_set_client = utf8 */;
  25. CREATE TABLE `access_groups` (
  26. `id` int(11) NOT NULL AUTO_INCREMENT,
  27. `os_state` varchar(250) NOT NULL,
  28. `end_date` date DEFAULT NULL,
  29. `start_date` date DEFAULT NULL,
  30. `status` varchar(250) DEFAULT NULL,
  31. `notes` text,
  32. `description` text,
  33. `url` varchar(250) DEFAULT NULL,
  34. `reference_url` varchar(250) DEFAULT NULL,
  35. `secondary_contact_id` int(11) DEFAULT NULL,
  36. `contact_id` int(11) DEFAULT NULL,
  37. `title` varchar(250) NOT NULL,
  38. `slug` varchar(250) NOT NULL,
  39. `created_at` datetime NOT NULL,
  40. `modified_by_id` int(11) DEFAULT NULL,
  41. `updated_at` datetime NOT NULL,
  42. `context_id` int(11) DEFAULT NULL,
  43. PRIMARY KEY (`id`),
  44. UNIQUE KEY `uq_access_groups` (`slug`),
  45. UNIQUE KEY `uq_t_access_groups` (`title`),
  46. KEY `fk_access_groups_contact` (`contact_id`),
  47. KEY `fk_access_groups_contexts` (`context_id`),
  48. KEY `fk_access_groups_secondary_contact` (`secondary_contact_id`),
  49. KEY `ix_access_groups_updated_at` (`updated_at`),
  50. CONSTRAINT `access_groups_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  51. CONSTRAINT `access_groups_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  52. CONSTRAINT `access_groups_ibfk_3` FOREIGN KEY (`secondary_contact_id`) REFERENCES `people` (`id`)
  53. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  54. /*!40101 SET character_set_client = @saved_cs_client */;
  55.  
  56. --
  57. -- Dumping data for table `access_groups`
  58. --
  59.  
  60. LOCK TABLES `access_groups` WRITE;
  61. /*!40000 ALTER TABLE `access_groups` DISABLE KEYS */;
  62. INSERT INTO `access_groups` VALUES (1,'Modified','2015-07-15','2015-07-01','Draft','this is a note','test','google.com','ggrc.com',16,15,'ag-1','ag-1','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(2,'Modified','2015-07-15','2015-07-01','Final','this is a note','test','google.com','ggrc.com',16,15,'ag-2','ag-2','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(3,'Modified','2015-07-15','2015-07-01','Effective','this is a note','test','google.com','ggrc.com',16,15,'ag-3','ag-3','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(4,'Modified','2015-07-15','2015-07-01','Ineffective','this is a note','test','google.com','ggrc.com',16,15,'ag-4','ag-4','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(5,'Modified','2015-07-15','2015-07-01','Launched','this is a note','test','google.com','ggrc.com',16,15,'ag-5','ag-5','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(6,'Modified','2015-07-15','2015-07-01','Not Launched','this is a note','test','google.com','ggrc.com',16,15,'ag-6','ag-6','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(7,'Modified','2015-07-15','2015-07-01','In Scope','this is a note','test','google.com','ggrc.com',16,15,'ag-7','ag-7','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(8,'Modified','2015-07-15','2015-07-01','Not in Scope','this is a note','test','google.com','ggrc.com',16,15,'ag-8','ag-8','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(9,'Modified','2015-07-15','2015-07-01','Deprecated','this is a note','test','google.com','ggrc.com',16,15,'ag-9','ag-9','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL),(10,'Modified','2015-07-15','2015-07-01','Draft','this is a note','test','google.com','ggrc.com',16,15,'ag-10','ag-10','2016-11-10 16:49:43',1,'2016-11-10 16:49:47',NULL);
  63. /*!40000 ALTER TABLE `access_groups` ENABLE KEYS */;
  64. UNLOCK TABLES;
  65.  
  66. --
  67. -- Table structure for table `assessment_templates`
  68. --
  69.  
  70. DROP TABLE IF EXISTS `assessment_templates`;
  71. /*!40101 SET @saved_cs_client = @@character_set_client */;
  72. /*!40101 SET character_set_client = utf8 */;
  73. CREATE TABLE `assessment_templates` (
  74. `id` int(11) NOT NULL AUTO_INCREMENT,
  75. `template_object_type` varchar(250) DEFAULT NULL,
  76. `test_plan_procedure` tinyint(1) NOT NULL DEFAULT '0',
  77. `procedure_description` text,
  78. `default_people` text NOT NULL,
  79. `created_at` datetime NOT NULL,
  80. `modified_by_id` int(11) DEFAULT NULL,
  81. `updated_at` datetime NOT NULL,
  82. `context_id` int(11) DEFAULT NULL,
  83. `title` varchar(250) NOT NULL,
  84. `slug` varchar(250) NOT NULL,
  85. PRIMARY KEY (`id`),
  86. KEY `context_id` (`context_id`),
  87. CONSTRAINT `assessment_templates_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  88. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  89. /*!40101 SET character_set_client = @saved_cs_client */;
  90.  
  91. --
  92. -- Dumping data for table `assessment_templates`
  93. --
  94.  
  95. LOCK TABLES `assessment_templates` WRITE;
  96. /*!40000 ALTER TABLE `assessment_templates` DISABLE KEYS */;
  97. /*!40000 ALTER TABLE `assessment_templates` ENABLE KEYS */;
  98. UNLOCK TABLES;
  99.  
  100. --
  101. -- Table structure for table `assessments`
  102. --
  103.  
  104. DROP TABLE IF EXISTS `assessments`;
  105. /*!40101 SET @saved_cs_client = @@character_set_client */;
  106. /*!40101 SET character_set_client = utf8 */;
  107. CREATE TABLE `assessments` (
  108. `id` int(11) NOT NULL AUTO_INCREMENT,
  109. `design` varchar(250) DEFAULT NULL,
  110. `operationally` varchar(250) DEFAULT NULL,
  111. `os_state` varchar(250) NOT NULL,
  112. `test_plan` text,
  113. `end_date` date DEFAULT NULL,
  114. `start_date` date DEFAULT NULL,
  115. `status` enum('Not Started','In Progress','Ready for Review','Verified','Completed') NOT NULL,
  116. `notes` text,
  117. `description` text,
  118. `url` varchar(250) DEFAULT NULL,
  119. `reference_url` varchar(250) DEFAULT NULL,
  120. `secondary_contact_id` int(11) DEFAULT NULL,
  121. `contact_id` int(11) DEFAULT NULL,
  122. `title` varchar(250) NOT NULL,
  123. `slug` varchar(250) NOT NULL,
  124. `created_at` datetime NOT NULL,
  125. `modified_by_id` int(11) DEFAULT NULL,
  126. `updated_at` datetime NOT NULL,
  127. `context_id` int(11) DEFAULT NULL,
  128. `control_id` int(11) DEFAULT NULL,
  129. `finished_date` datetime DEFAULT NULL,
  130. `verified_date` datetime DEFAULT NULL,
  131. `recipients` varchar(250) DEFAULT NULL,
  132. `send_by_default` tinyint(1) DEFAULT NULL,
  133. PRIMARY KEY (`id`),
  134. UNIQUE KEY `uq_control_assessments` (`slug`),
  135. KEY `contact_id` (`contact_id`),
  136. KEY `context_id` (`context_id`),
  137. KEY `secondary_contact_id` (`secondary_contact_id`),
  138. KEY `fk_control_control_assessment` (`control_id`),
  139. CONSTRAINT `assessments_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  140. CONSTRAINT `assessments_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  141. CONSTRAINT `assessments_ibfk_3` FOREIGN KEY (`secondary_contact_id`) REFERENCES `people` (`id`),
  142. CONSTRAINT `fk_control_control_assessment` FOREIGN KEY (`control_id`) REFERENCES `controls` (`id`)
  143. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  144. /*!40101 SET character_set_client = @saved_cs_client */;
  145.  
  146. --
  147. -- Dumping data for table `assessments`
  148. --
  149.  
  150. LOCK TABLES `assessments` WRITE;
  151. /*!40000 ALTER TABLE `assessments` DISABLE KEYS */;
  152. INSERT INTO `assessments` VALUES (1,'Effective',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-1','ca-1','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(2,'Ineffective',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-2','ca-2','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(3,'Needs improvement',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-3','ca-3','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(4,'Not Applicable',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-4','ca-4','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(5,'Not Applicable',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-5','ca-5','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(6,'Effective',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-6','ca-6','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(7,'Effective',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-7','ca-7','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(8,'Ineffective',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-8','ca-8','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(9,'Needs improvement',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-9','ca-9','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL),(10,'Not Applicable',NULL,'Modified','plan','2015-07-15','2015-07-01','Not Started','this is a note','test','google.com','ggrc.com',16,15,'ca-10','ca-10','2016-11-10 16:49:45',1,'2016-11-10 16:49:48',NULL,NULL,NULL,NULL,NULL,NULL);
  153. /*!40000 ALTER TABLE `assessments` ENABLE KEYS */;
  154. UNLOCK TABLES;
  155.  
  156. --
  157. -- Table structure for table `audit_objects`
  158. --
  159.  
  160. DROP TABLE IF EXISTS `audit_objects`;
  161. /*!40101 SET @saved_cs_client = @@character_set_client */;
  162. /*!40101 SET character_set_client = utf8 */;
  163. CREATE TABLE `audit_objects` (
  164. `id` int(11) NOT NULL AUTO_INCREMENT,
  165. `modified_by_id` int(11) DEFAULT NULL,
  166. `created_at` datetime NOT NULL,
  167. `updated_at` datetime NOT NULL,
  168. `context_id` int(11) NOT NULL,
  169. `audit_id` int(11) NOT NULL,
  170. `auditable_id` int(11) NOT NULL,
  171. `auditable_type` varchar(250) NOT NULL,
  172. PRIMARY KEY (`id`),
  173. UNIQUE KEY `audit_id` (`audit_id`,`auditable_id`,`auditable_type`),
  174. KEY `context_id` (`context_id`),
  175. CONSTRAINT `audit_objects_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  176. CONSTRAINT `audit_objects_ibfk_2` FOREIGN KEY (`audit_id`) REFERENCES `audits` (`id`)
  177. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  178. /*!40101 SET character_set_client = @saved_cs_client */;
  179.  
  180. --
  181. -- Dumping data for table `audit_objects`
  182. --
  183.  
  184. LOCK TABLES `audit_objects` WRITE;
  185. /*!40000 ALTER TABLE `audit_objects` DISABLE KEYS */;
  186. /*!40000 ALTER TABLE `audit_objects` ENABLE KEYS */;
  187. UNLOCK TABLES;
  188.  
  189. --
  190. -- Table structure for table `audits`
  191. --
  192.  
  193. DROP TABLE IF EXISTS `audits`;
  194. /*!40101 SET @saved_cs_client = @@character_set_client */;
  195. /*!40101 SET character_set_client = utf8 */;
  196. CREATE TABLE `audits` (
  197. `id` int(11) NOT NULL AUTO_INCREMENT,
  198. `title` varchar(250) NOT NULL,
  199. `slug` varchar(250) NOT NULL,
  200. `description` text,
  201. `url` varchar(250) DEFAULT NULL,
  202. `start_date` date DEFAULT NULL,
  203. `end_date` date DEFAULT NULL,
  204. `report_start_date` date DEFAULT NULL,
  205. `report_end_date` date DEFAULT NULL,
  206. `contact_id` int(11) DEFAULT NULL,
  207. `status` enum('Planned','In Progress','Manager Review','Ready for External Review','Completed') NOT NULL,
  208. `gdrive_evidence_folder` varchar(250) DEFAULT NULL,
  209. `program_id` int(11) NOT NULL,
  210. `created_at` datetime NOT NULL,
  211. `modified_by_id` int(11) DEFAULT NULL,
  212. `updated_at` datetime NOT NULL,
  213. `context_id` int(11) DEFAULT NULL,
  214. `notes` text,
  215. `audit_firm_id` int(11) DEFAULT NULL,
  216. `reference_url` varchar(250) DEFAULT NULL,
  217. `object_type` varchar(250) NOT NULL,
  218. `secondary_contact_id` int(11) DEFAULT NULL,
  219. PRIMARY KEY (`id`),
  220. UNIQUE KEY `uq_t_audits` (`title`),
  221. KEY `program_id` (`program_id`),
  222. KEY `fk_audits_contact` (`contact_id`),
  223. KEY `fk_audits_contexts` (`context_id`),
  224. KEY `ix_audits_updated_at` (`updated_at`),
  225. KEY `fk_audits_secondary_contact` (`secondary_contact_id`),
  226. CONSTRAINT `audits_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  227. CONSTRAINT `audits_ibfk_3` FOREIGN KEY (`program_id`) REFERENCES `programs` (`id`)
  228. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  229. /*!40101 SET character_set_client = @saved_cs_client */;
  230.  
  231. --
  232. -- Dumping data for table `audits`
  233. --
  234.  
  235. LOCK TABLES `audits` WRITE;
  236. /*!40000 ALTER TABLE `audits` DISABLE KEYS */;
  237. INSERT INTO `audits` VALUES (1,'Aud-1','Aud-1','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,1,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',14,NULL,NULL,NULL,'Control',NULL),(2,'Aud-2','Aud-2','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,2,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',15,NULL,NULL,NULL,'Control',NULL),(3,'Aud-3','Aud-3','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,3,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',16,NULL,NULL,NULL,'Control',NULL),(4,'Aud-4','Aud-4','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,4,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',17,NULL,NULL,NULL,'Control',NULL),(5,'Aud-5','Aud-5','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,5,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',18,NULL,NULL,NULL,'Control',NULL),(6,'Aud-6','Aud-6','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,6,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',19,NULL,NULL,NULL,'Control',NULL),(7,'Aud-7','Aud-7','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,7,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',20,NULL,NULL,NULL,'Control',NULL),(8,'Aud-8','Aud-8','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,8,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',21,NULL,NULL,NULL,'Control',NULL),(9,'Aud-9','Aud-9','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,9,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',22,NULL,NULL,NULL,'Control',NULL),(10,'Aud-10','Aud-10','test',NULL,'2015-07-01','2015-07-15',NULL,NULL,15,'Planned',NULL,10,'2016-11-10 16:49:44',1,'2016-11-10 16:49:44',23,NULL,NULL,NULL,'Control',NULL);
  238. /*!40000 ALTER TABLE `audits` ENABLE KEYS */;
  239. UNLOCK TABLES;
  240.  
  241. --
  242. -- Table structure for table `background_tasks`
  243. --
  244.  
  245. DROP TABLE IF EXISTS `background_tasks`;
  246. /*!40101 SET @saved_cs_client = @@character_set_client */;
  247. /*!40101 SET character_set_client = utf8 */;
  248. CREATE TABLE `background_tasks` (
  249. `id` int(11) NOT NULL AUTO_INCREMENT,
  250. `name` varchar(250) DEFAULT NULL,
  251. `parameters` mediumblob,
  252. `result` mediumblob,
  253. `created_at` datetime NOT NULL,
  254. `modified_by_id` int(11) DEFAULT NULL,
  255. `updated_at` datetime NOT NULL,
  256. `context_id` int(11) DEFAULT NULL,
  257. `status` varchar(250) DEFAULT NULL,
  258. PRIMARY KEY (`id`),
  259. KEY `fk_background_tasks_contexts` (`context_id`),
  260. KEY `ix_background_tasks_updated_at` (`updated_at`),
  261. CONSTRAINT `background_tasks_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  262. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
  263. /*!40101 SET character_set_client = @saved_cs_client */;
  264.  
  265. --
  266. -- Dumping data for table `background_tasks`
  267. --
  268.  
  269. LOCK TABLES `background_tasks` WRITE;
  270. /*!40000 ALTER TABLE `background_tasks` DISABLE KEYS */;
  271. INSERT INTO `background_tasks` VALUES (1,'DELETE1478796815','(dp0\n.','(dp0\nS\'content\'\np1\nS\'{\"user_role\": {\"modified_by\": {\"context_id\": null, \"href\": \"/api/people/1\", \"type\": \"Person\", \"id\": 1}, \"created_at\": \"2016-11-10T16:52:45\", \"updated_at\": \"2016-11-10T16:52:45\", \"person\": {\"context_id\": null, \"href\": \"/api/people/27\", \"type\": \"Person\", \"id\": 27}, \"role\": {\"context_id\": null, \"href\": \"/api/roles/19\", \"type\": \"Role\", \"id\": 19}, \"context\": {\"context_id\": null, \"href\": \"/api/contexts/25\", \"type\": \"Context\", \"id\": 25}, \"type\": \"UserRole\", \"id\": 121, \"selfLink\": \"/api/user_roles/121\"}}\'\np2\nsS\'status_code\'\np3\nI200\nsS\'headers\'\np4\n(lp5\n(S\'Last-Modified\'\np6\nS\'Thu, 10 Nov 2016 16:52:45 GMT\'\np7\ntp8\na(S\'Etag\'\np9\nS\'\"271f5a0118125da28852308dbd25ba92ab3920e0\"\'\np10\ntp11\na(S\'Content-Type\'\np12\nS\'application/json\'\np13\ntp14\na(S\'Content-Length\'\np15\nV501\np16\ntp17\nas.','2016-11-10 16:53:35',1,'2016-11-10 16:53:35',NULL,'Success'),(2,'DELETE1478796820','(dp0\n.','(dp0\nS\'content\'\np1\nS\'{\"workflow_person\": {\"status\": \"Draft\", \"modified_by\": null, \"workflow\": {\"context_id\": 25, \"href\": \"/api/workflows/2\", \"type\": \"Workflow\", \"id\": 2}, \"created_at\": \"2016-11-10T16:52:45\", \"updated_at\": \"2016-11-10T16:52:45\", \"person\": {\"context_id\": null, \"href\": \"/api/people/27\", \"type\": \"Person\", \"id\": 27}, \"context\": {\"context_id\": null, \"href\": \"/api/contexts/25\", \"type\": \"Context\", \"id\": 25}, \"type\": \"WorkflowPerson\", \"id\": 18, \"selfLink\": \"/api/workflow_people/18\"}}\'\np2\nsS\'status_code\'\np3\nI200\nsS\'headers\'\np4\n(lp5\n(S\'Last-Modified\'\np6\nS\'Thu, 10 Nov 2016 16:52:45 GMT\'\np7\ntp8\na(S\'Etag\'\np9\nS\'\"a809610c7c14d234b72fd06e8f727ad6abebc3cd\"\'\np10\ntp11\na(S\'Content-Type\'\np12\nS\'application/json\'\np13\ntp14\na(S\'Content-Length\'\np15\nV475\np16\ntp17\nas.','2016-11-10 16:53:40',1,'2016-11-10 16:53:40',NULL,'Success');
  272. /*!40000 ALTER TABLE `background_tasks` ENABLE KEYS */;
  273. UNLOCK TABLES;
  274.  
  275. --
  276. -- Table structure for table `categories`
  277. --
  278.  
  279. DROP TABLE IF EXISTS `categories`;
  280. /*!40101 SET @saved_cs_client = @@character_set_client */;
  281. /*!40101 SET character_set_client = utf8 */;
  282. CREATE TABLE `categories` (
  283. `id` int(11) NOT NULL AUTO_INCREMENT,
  284. `modified_by_id` int(11) DEFAULT NULL,
  285. `created_at` datetime NOT NULL,
  286. `updated_at` datetime NOT NULL,
  287. `name` varchar(250) DEFAULT NULL,
  288. `lft` int(11) DEFAULT NULL,
  289. `rgt` int(11) DEFAULT NULL,
  290. `scope_id` int(11) DEFAULT NULL,
  291. `depth` int(11) DEFAULT NULL,
  292. `required` tinyint(1) DEFAULT NULL,
  293. `parent_id` int(11) DEFAULT NULL,
  294. `context_id` int(11) DEFAULT NULL,
  295. `type` varchar(250) DEFAULT NULL,
  296. PRIMARY KEY (`id`),
  297. KEY `parent_id` (`parent_id`),
  298. KEY `fk_categories_contexts` (`context_id`),
  299. KEY `ix_categories_updated_at` (`updated_at`),
  300. CONSTRAINT `fk_categories_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  301. ) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8;
  302. /*!40101 SET character_set_client = @saved_cs_client */;
  303.  
  304. --
  305. -- Dumping data for table `categories`
  306. --
  307.  
  308. LOCK TABLES `categories` WRITE;
  309. /*!40000 ALTER TABLE `categories` DISABLE KEYS */;
  310. INSERT INTO `categories` VALUES (37,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Confidentiality',NULL,NULL,102,NULL,NULL,NULL,NULL,'ControlAssertion'),(38,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Integrity',NULL,NULL,102,NULL,NULL,NULL,NULL,'ControlAssertion'),(39,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Availability',NULL,NULL,102,NULL,NULL,NULL,NULL,'ControlAssertion'),(40,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Security',NULL,NULL,102,NULL,NULL,NULL,NULL,'ControlAssertion'),(41,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Privacy',NULL,NULL,102,NULL,NULL,NULL,NULL,'ControlAssertion'),(42,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Org and Admin/Governance',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(43,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Training',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(44,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Policies & Procedures',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(45,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','HR',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(46,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Logical Access/ Access Control',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(47,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Access Management',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(48,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Authorization',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(49,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Authentication',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(50,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Change Management',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(51,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Segregation of Duties',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(52,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Configuration Management',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(53,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Package Verification and Code release',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(54,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Incident Management',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(55,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Monitoring ',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(56,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Process',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(57,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Business Continuity',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(58,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Disaster Recovery',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(59,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Restoration Tests',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(60,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Backup Logs ',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(61,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Replication',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(62,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Data Protection and Retention',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(63,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Physical Security',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(64,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Data Centers',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory'),(65,NULL,'2016-05-03 10:37:03','2016-05-03 10:37:03','Sites',NULL,NULL,100,NULL,NULL,NULL,NULL,'ControlCategory');
  311. /*!40000 ALTER TABLE `categories` ENABLE KEYS */;
  312. UNLOCK TABLES;
  313.  
  314. --
  315. -- Table structure for table `categorizations`
  316. --
  317.  
  318. DROP TABLE IF EXISTS `categorizations`;
  319. /*!40101 SET @saved_cs_client = @@character_set_client */;
  320. /*!40101 SET character_set_client = utf8 */;
  321. CREATE TABLE `categorizations` (
  322. `id` int(11) NOT NULL AUTO_INCREMENT,
  323. `modified_by_id` int(11) DEFAULT NULL,
  324. `created_at` datetime NOT NULL,
  325. `updated_at` datetime NOT NULL,
  326. `category_id` int(11) NOT NULL,
  327. `categorizable_id` int(11) DEFAULT NULL,
  328. `categorizable_type` varchar(250) DEFAULT NULL,
  329. `context_id` int(11) DEFAULT NULL,
  330. `category_type` varchar(250) DEFAULT NULL,
  331. PRIMARY KEY (`id`),
  332. KEY `category_id` (`category_id`),
  333. KEY `fk_categorizations_contexts` (`context_id`),
  334. KEY `ix_categorizations_updated_at` (`updated_at`),
  335. CONSTRAINT `categorizations_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`),
  336. CONSTRAINT `fk_categorizations_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  337. ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
  338. /*!40101 SET character_set_client = @saved_cs_client */;
  339.  
  340. --
  341. -- Dumping data for table `categorizations`
  342. --
  343.  
  344. LOCK TABLES `categorizations` WRITE;
  345. /*!40000 ALTER TABLE `categorizations` DISABLE KEYS */;
  346. INSERT INTO `categorizations` VALUES (1,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',41,1,'Control',NULL,'ControlAssertion'),(2,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',64,1,'Control',NULL,'ControlCategory'),(3,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',40,2,'Control',NULL,'ControlAssertion'),(4,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',58,2,'Control',NULL,'ControlCategory'),(5,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',39,3,'Control',NULL,'ControlAssertion'),(6,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',46,3,'Control',NULL,'ControlCategory'),(7,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',38,4,'Control',NULL,'ControlAssertion'),(8,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',65,4,'Control',NULL,'ControlCategory'),(9,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',37,5,'Control',NULL,'ControlAssertion'),(10,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',43,5,'Control',NULL,'ControlCategory'),(11,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',41,6,'Control',NULL,'ControlAssertion'),(12,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',44,6,'Control',NULL,'ControlCategory'),(13,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',40,7,'Control',NULL,'ControlAssertion'),(14,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',53,7,'Control',NULL,'ControlCategory'),(15,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',39,8,'Control',NULL,'ControlAssertion'),(16,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',42,8,'Control',NULL,'ControlCategory'),(17,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',38,9,'Control',NULL,'ControlAssertion'),(18,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',51,9,'Control',NULL,'ControlCategory'),(19,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',37,10,'Control',NULL,'ControlAssertion'),(20,NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',55,10,'Control',NULL,'ControlCategory');
  347. /*!40000 ALTER TABLE `categorizations` ENABLE KEYS */;
  348. UNLOCK TABLES;
  349.  
  350. --
  351. -- Table structure for table `clauses`
  352. --
  353.  
  354. DROP TABLE IF EXISTS `clauses`;
  355. /*!40101 SET @saved_cs_client = @@character_set_client */;
  356. /*!40101 SET character_set_client = utf8 */;
  357. CREATE TABLE `clauses` (
  358. `id` int(11) NOT NULL AUTO_INCREMENT,
  359. `na` tinyint(1) NOT NULL,
  360. `notes` text,
  361. `os_state` varchar(250) NOT NULL,
  362. `parent_id` int(11) DEFAULT NULL,
  363. `description` text,
  364. `url` varchar(250) DEFAULT NULL,
  365. `reference_url` varchar(250) DEFAULT NULL,
  366. `secondary_contact_id` int(11) DEFAULT NULL,
  367. `contact_id` int(11) DEFAULT NULL,
  368. `title` varchar(250) NOT NULL,
  369. `slug` varchar(250) NOT NULL,
  370. `created_at` datetime NOT NULL,
  371. `modified_by_id` int(11) DEFAULT NULL,
  372. `updated_at` datetime NOT NULL,
  373. `context_id` int(11) DEFAULT NULL,
  374. `status` varchar(250) DEFAULT NULL,
  375. `end_date` date DEFAULT NULL,
  376. `start_date` date DEFAULT NULL,
  377. PRIMARY KEY (`id`),
  378. UNIQUE KEY `uq_clauses` (`slug`),
  379. UNIQUE KEY `uq_t_clauses` (`title`),
  380. KEY `contact_id` (`contact_id`),
  381. KEY `context_id` (`context_id`),
  382. KEY `parent_id` (`parent_id`),
  383. KEY `secondary_contact_id` (`secondary_contact_id`),
  384. CONSTRAINT `clauses_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  385. CONSTRAINT `clauses_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  386. CONSTRAINT `clauses_ibfk_3` FOREIGN KEY (`parent_id`) REFERENCES `clauses` (`id`),
  387. CONSTRAINT `clauses_ibfk_4` FOREIGN KEY (`secondary_contact_id`) REFERENCES `people` (`id`)
  388. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  389. /*!40101 SET character_set_client = @saved_cs_client */;
  390.  
  391. --
  392. -- Dumping data for table `clauses`
  393. --
  394.  
  395. LOCK TABLES `clauses` WRITE;
  396. /*!40000 ALTER TABLE `clauses` DISABLE KEYS */;
  397. INSERT INTO `clauses` VALUES (1,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-1','cl-1','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Draft','2015-07-15','2015-07-01'),(2,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-2','cl-2','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Final','2015-07-15','2015-07-01'),(3,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-3','cl-3','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Effective','2015-07-15','2015-07-01'),(4,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-4','cl-4','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Ineffective','2015-07-15','2015-07-01'),(5,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-5','cl-5','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Launched','2015-07-15','2015-07-01'),(6,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-6','cl-6','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Not Launched','2015-07-15','2015-07-01'),(7,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-7','cl-7','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'In Scope','2015-07-15','2015-07-01'),(8,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-8','cl-8','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Not in Scope','2015-07-15','2015-07-01'),(9,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-9','cl-9','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Deprecated','2015-07-15','2015-07-01'),(10,0,'this is a note','Draft',NULL,'test','google.com','ggrc.com',16,15,'cl-10','cl-10','2016-11-10 16:49:41',1,'2016-11-10 16:49:41',NULL,'Draft','2015-07-15','2015-07-01');
  398. /*!40000 ALTER TABLE `clauses` ENABLE KEYS */;
  399. UNLOCK TABLES;
  400.  
  401. --
  402. -- Table structure for table `comments`
  403. --
  404.  
  405. DROP TABLE IF EXISTS `comments`;
  406. /*!40101 SET @saved_cs_client = @@character_set_client */;
  407. /*!40101 SET character_set_client = utf8 */;
  408. CREATE TABLE `comments` (
  409. `id` int(11) NOT NULL AUTO_INCREMENT,
  410. `description` text,
  411. `created_at` datetime NOT NULL,
  412. `modified_by_id` int(11) DEFAULT NULL,
  413. `updated_at` datetime NOT NULL,
  414. `context_id` int(11) DEFAULT NULL,
  415. `assignee_type` text,
  416. `revision_id` int(11) DEFAULT NULL,
  417. `custom_attribute_definition_id` int(11) DEFAULT NULL,
  418. PRIMARY KEY (`id`),
  419. KEY `context_id` (`context_id`),
  420. KEY `fk_comments_revisions` (`revision_id`),
  421. KEY `fk_comments_custom_attribute_definitions` (`custom_attribute_definition_id`),
  422. CONSTRAINT `fk_comments_custom_attribute_definitions` FOREIGN KEY (`custom_attribute_definition_id`) REFERENCES `custom_attribute_definitions` (`id`) ON DELETE SET NULL,
  423. CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  424. CONSTRAINT `fk_comments_revisions` FOREIGN KEY (`revision_id`) REFERENCES `revisions` (`id`) ON DELETE SET NULL
  425. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  426. /*!40101 SET character_set_client = @saved_cs_client */;
  427.  
  428. --
  429. -- Dumping data for table `comments`
  430. --
  431.  
  432. LOCK TABLES `comments` WRITE;
  433. /*!40000 ALTER TABLE `comments` DISABLE KEYS */;
  434. /*!40000 ALTER TABLE `comments` ENABLE KEYS */;
  435. UNLOCK TABLES;
  436.  
  437. --
  438. -- Table structure for table `context_implications`
  439. --
  440.  
  441. DROP TABLE IF EXISTS `context_implications`;
  442. /*!40101 SET @saved_cs_client = @@character_set_client */;
  443. /*!40101 SET character_set_client = utf8 */;
  444. CREATE TABLE `context_implications` (
  445. `id` int(11) NOT NULL AUTO_INCREMENT,
  446. `context_id` int(11) DEFAULT NULL,
  447. `source_context_id` int(11) DEFAULT NULL,
  448. `modified_by_id` int(11) DEFAULT NULL,
  449. `created_at` datetime NOT NULL,
  450. `updated_at` datetime NOT NULL,
  451. `context_scope` varchar(128) DEFAULT NULL,
  452. `source_context_scope` varchar(128) DEFAULT NULL,
  453. PRIMARY KEY (`id`),
  454. KEY `fk_context_implications_contexts` (`context_id`),
  455. KEY `ix_context_implications_updated_at` (`updated_at`),
  456. KEY `ix_context_implications_source_id` (`source_context_id`)
  457. ) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8;
  458. /*!40101 SET character_set_client = @saved_cs_client */;
  459.  
  460. --
  461. -- Dumping data for table `context_implications`
  462. --
  463.  
  464. LOCK TABLES `context_implications` WRITE;
  465. /*!40000 ALTER TABLE `context_implications` DISABLE KEYS */;
  466. INSERT INTO `context_implications` VALUES (1,NULL,NULL,NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,NULL),(2,NULL,4,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(3,4,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(4,NULL,5,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(5,5,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(6,NULL,6,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(7,6,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(8,NULL,7,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(9,7,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(10,NULL,8,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(11,8,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(12,NULL,9,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(13,9,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(14,NULL,10,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(15,10,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(16,NULL,11,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(17,11,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(18,NULL,12,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(19,12,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(20,NULL,13,1,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Program'),(21,13,NULL,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','Program',NULL),(22,14,4,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(23,4,14,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(24,NULL,14,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(25,15,5,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(26,5,15,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(27,NULL,15,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(28,16,6,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(29,6,16,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(30,NULL,16,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(31,17,7,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(32,7,17,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(33,NULL,17,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(34,18,8,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(35,8,18,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(36,NULL,18,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(37,19,9,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(38,9,19,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(39,NULL,19,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(40,20,10,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(41,10,20,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(42,NULL,20,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(43,21,11,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(44,11,21,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(45,NULL,21,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(46,22,12,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(47,12,22,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(48,NULL,22,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(49,23,13,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Audit','Program'),(50,13,23,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','Program','Audit'),(51,NULL,23,1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Audit'),(52,NULL,24,1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Workflow'),(53,24,NULL,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','Workflow',NULL),(54,NULL,25,1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Workflow'),(55,25,NULL,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','Workflow',NULL),(56,NULL,26,1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Workflow'),(57,26,NULL,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','Workflow',NULL),(58,NULL,27,1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Workflow'),(59,27,NULL,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','Workflow',NULL),(60,NULL,28,1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,'Workflow'),(61,28,NULL,1,'2016-11-10 16:49:46','2016-11-10 16:49:46','Workflow',NULL),(62,NULL,29,1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,'Workflow'),(63,29,NULL,1,'2016-11-10 16:49:46','2016-11-10 16:49:46','Workflow',NULL),(64,NULL,30,1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,'Workflow'),(65,30,NULL,1,'2016-11-10 16:49:46','2016-11-10 16:49:46','Workflow',NULL),(66,NULL,31,1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,'Workflow'),(67,31,NULL,1,'2016-11-10 16:49:46','2016-11-10 16:49:46','Workflow',NULL),(68,NULL,32,1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,'Workflow'),(69,32,NULL,1,'2016-11-10 16:49:46','2016-11-10 16:49:46','Workflow',NULL),(70,NULL,33,1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,'Workflow'),(71,33,NULL,1,'2016-11-10 16:49:46','2016-11-10 16:49:46','Workflow',NULL);
  467. /*!40000 ALTER TABLE `context_implications` ENABLE KEYS */;
  468. UNLOCK TABLES;
  469.  
  470. --
  471. -- Table structure for table `contexts`
  472. --
  473.  
  474. DROP TABLE IF EXISTS `contexts`;
  475. /*!40101 SET @saved_cs_client = @@character_set_client */;
  476. /*!40101 SET character_set_client = utf8 */;
  477. CREATE TABLE `contexts` (
  478. `id` int(11) NOT NULL AUTO_INCREMENT,
  479. `name` varchar(128) DEFAULT NULL,
  480. `description` text,
  481. `related_object_id` int(11) DEFAULT NULL,
  482. `related_object_type` varchar(128) DEFAULT NULL,
  483. `modified_by_id` int(11) DEFAULT NULL,
  484. `created_at` datetime NOT NULL,
  485. `updated_at` datetime NOT NULL,
  486. `context_id` int(11) DEFAULT NULL,
  487. PRIMARY KEY (`id`),
  488. KEY `fk_contexts_contexts` (`context_id`),
  489. KEY `ix_context_related_object` (`related_object_type`,`related_object_id`),
  490. KEY `ix_contexts_updated_at` (`updated_at`)
  491. ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
  492. /*!40101 SET character_set_client = @saved_cs_client */;
  493.  
  494. --
  495. -- Dumping data for table `contexts`
  496. --
  497.  
  498. LOCK TABLES `contexts` WRITE;
  499. /*!40000 ALTER TABLE `contexts` DISABLE KEYS */;
  500. INSERT INTO `contexts` VALUES (0,'System Administration','Context for super-user permissions.',NULL,NULL,NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL),(1,'Administration','Context for Administrative resources.',NULL,NULL,0,'2016-11-10 16:48:52','2016-11-10 16:48:52',1),(3,'Personal Context for user@example.com','',1,'Person',1,'2016-11-10 16:49:15','2016-11-10 16:49:46',33),(4,'Program Context 2016-11-10 16:49:43.513055','',1,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',14),(5,'Program Context 2016-11-10 16:49:43.546409','',2,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',15),(6,'Program Context 2016-11-10 16:49:43.571266','',3,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',16),(7,'Program Context 2016-11-10 16:49:43.589301','',4,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',17),(8,'Program Context 2016-11-10 16:49:43.609420','',5,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',18),(9,'Program Context 2016-11-10 16:49:43.631912','',6,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',19),(10,'Program Context 2016-11-10 16:49:43.652331','',7,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',20),(11,'Program Context 2016-11-10 16:49:43.676143','',8,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',21),(12,'Program Context 2016-11-10 16:49:43.698896','',9,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',22),(13,'Program Context 2016-11-10 16:49:43.718837','',10,'Program',1,'2016-11-10 16:49:43','2016-11-10 16:49:44',23),(14,'Audit Context 2016-11-10 16:49:44.251823','',1,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(15,'Audit Context 2016-11-10 16:49:44.266200','',2,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(16,'Audit Context 2016-11-10 16:49:44.280432','',3,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(17,'Audit Context 2016-11-10 16:49:44.293865','',4,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(18,'Audit Context 2016-11-10 16:49:44.306725','',5,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(19,'Audit Context 2016-11-10 16:49:44.321025','',6,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(20,'Audit Context 2016-11-10 16:49:44.336996','',7,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(21,'Audit Context 2016-11-10 16:49:44.354531','',8,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(22,'Audit Context 2016-11-10 16:49:44.369071','',9,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(23,'Audit Context 2016-11-10 16:49:44.385179','',10,'Audit',1,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL),(24,'Workflow Context 2016-11-10 16:49:45.906636','',1,'Workflow',1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL),(25,'Workflow Context 2016-11-10 16:49:45.932433','',2,'Workflow',1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL),(26,'Workflow Context 2016-11-10 16:49:45.957514','',3,'Workflow',1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL),(27,'Workflow Context 2016-11-10 16:49:45.979489','',4,'Workflow',1,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL),(28,'Workflow Context 2016-11-10 16:49:46.001859','',5,'Workflow',1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL),(29,'Workflow Context 2016-11-10 16:49:46.023355','',6,'Workflow',1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL),(30,'Workflow Context 2016-11-10 16:49:46.046184','',7,'Workflow',1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL),(31,'Workflow Context 2016-11-10 16:49:46.067720','',8,'Workflow',1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL),(32,'Workflow Context 2016-11-10 16:49:46.089166','',9,'Workflow',1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL),(33,'Workflow Context 2016-11-10 16:49:46.111004','',10,'Workflow',1,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL);
  501. /*!40000 ALTER TABLE `contexts` ENABLE KEYS */;
  502. UNLOCK TABLES;
  503.  
  504. --
  505. -- Table structure for table `controls`
  506. --
  507.  
  508. DROP TABLE IF EXISTS `controls`;
  509. /*!40101 SET @saved_cs_client = @@character_set_client */;
  510. /*!40101 SET character_set_client = utf8 */;
  511. CREATE TABLE `controls` (
  512. `id` int(11) NOT NULL AUTO_INCREMENT,
  513. `modified_by_id` int(11) DEFAULT NULL,
  514. `created_at` datetime NOT NULL,
  515. `updated_at` datetime NOT NULL,
  516. `description` text,
  517. `url` varchar(250) DEFAULT NULL,
  518. `start_date` date DEFAULT NULL,
  519. `end_date` date DEFAULT NULL,
  520. `slug` varchar(250) NOT NULL,
  521. `title` varchar(250) NOT NULL,
  522. `directive_id` int(11) DEFAULT NULL,
  523. `kind_id` int(11) DEFAULT NULL,
  524. `means_id` int(11) DEFAULT NULL,
  525. `version` varchar(250) DEFAULT NULL,
  526. `documentation_description` text,
  527. `verify_frequency_id` int(11) DEFAULT NULL,
  528. `fraud_related` tinyint(1) DEFAULT NULL,
  529. `key_control` tinyint(1) DEFAULT NULL,
  530. `active` tinyint(1) DEFAULT NULL,
  531. `notes` text,
  532. `parent_id` int(11) DEFAULT NULL,
  533. `company_control` tinyint(1) DEFAULT NULL,
  534. `context_id` int(11) DEFAULT NULL,
  535. `contact_id` int(11) DEFAULT NULL,
  536. `status` varchar(250) DEFAULT NULL,
  537. `principal_assessor_id` int(11) DEFAULT NULL,
  538. `secondary_assessor_id` int(11) DEFAULT NULL,
  539. `reference_url` varchar(250) DEFAULT NULL,
  540. `secondary_contact_id` int(11) DEFAULT NULL,
  541. `os_state` varchar(16) NOT NULL,
  542. `test_plan` text,
  543. PRIMARY KEY (`id`),
  544. UNIQUE KEY `uq_controls` (`slug`),
  545. UNIQUE KEY `uq_t_controls` (`title`),
  546. KEY `directive_id` (`directive_id`),
  547. KEY `parent_id` (`parent_id`),
  548. KEY `fk_controls_contexts` (`context_id`),
  549. KEY `fk_controls_contact` (`contact_id`),
  550. KEY `ix_controls_principal_assessor` (`principal_assessor_id`),
  551. KEY `ix_controls_secondary_assessor` (`secondary_assessor_id`),
  552. KEY `ix_controls_updated_at` (`updated_at`),
  553. KEY `fk_controls_secondary_contact` (`secondary_contact_id`),
  554. CONSTRAINT `controls_ibfk_1` FOREIGN KEY (`directive_id`) REFERENCES `directives` (`id`),
  555. CONSTRAINT `controls_ibfk_2` FOREIGN KEY (`parent_id`) REFERENCES `controls` (`id`),
  556. CONSTRAINT `fk_controls_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  557. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  558. /*!40101 SET character_set_client = @saved_cs_client */;
  559.  
  560. --
  561. -- Dumping data for table `controls`
  562. --
  563.  
  564. LOCK TABLES `controls` WRITE;
  565. /*!40000 ALTER TABLE `controls` DISABLE KEYS */;
  566. INSERT INTO `controls` VALUES (1,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-1','control-1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Draft',15,16,'ggrc.com',16,'Draft','plan'),(2,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-2','control-2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Final',15,16,'ggrc.com',16,'Draft','plan'),(3,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-3','control 3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Effective',15,16,'ggrc.com',16,'Draft','plan'),(4,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-4','control-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Ineffective',15,16,'ggrc.com',16,'Draft','plan'),(5,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-5','control-5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Launched',15,16,'ggrc.com',16,'Draft','plan'),(6,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-6','control-6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Not Launched',15,16,'ggrc.com',16,'Draft','plan'),(7,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-7','control-7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'In Scope',15,16,'ggrc.com',16,'Draft','plan'),(8,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-8','control 8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Not in Scope',15,16,'ggrc.com',16,'Draft','plan'),(9,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-9','control-9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Deprecated',15,16,'ggrc.com',16,'Draft','plan'),(10,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','control-10','control-10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'this is a note',NULL,NULL,NULL,15,'Draft',15,16,'ggrc.com',16,'Draft','plan');
  567. /*!40000 ALTER TABLE `controls` ENABLE KEYS */;
  568. UNLOCK TABLES;
  569.  
  570. --
  571. -- Table structure for table `custom_attribute_definitions`
  572. --
  573.  
  574. DROP TABLE IF EXISTS `custom_attribute_definitions`;
  575. /*!40101 SET @saved_cs_client = @@character_set_client */;
  576. /*!40101 SET character_set_client = utf8 */;
  577. CREATE TABLE `custom_attribute_definitions` (
  578. `id` int(11) NOT NULL AUTO_INCREMENT,
  579. `modified_by_id` int(11) DEFAULT NULL,
  580. `context_id` int(11) DEFAULT NULL,
  581. `created_at` datetime NOT NULL,
  582. `updated_at` datetime NOT NULL,
  583. `title` varchar(250) NOT NULL,
  584. `helptext` varchar(250) DEFAULT NULL,
  585. `placeholder` varchar(250) DEFAULT NULL,
  586. `definition_type` varchar(250) NOT NULL,
  587. `attribute_type` varchar(250) NOT NULL,
  588. `multi_choice_options` text,
  589. `mandatory` tinyint(1) DEFAULT NULL,
  590. `definition_id` int(11) DEFAULT NULL,
  591. `multi_choice_mandatory` text,
  592. PRIMARY KEY (`id`),
  593. UNIQUE KEY `uq_custom_attribute` (`definition_type`,`definition_id`,`title`),
  594. KEY `ix_custom_attributes_title` (`title`)
  595. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  596. /*!40101 SET character_set_client = @saved_cs_client */;
  597.  
  598. --
  599. -- Dumping data for table `custom_attribute_definitions`
  600. --
  601.  
  602. LOCK TABLES `custom_attribute_definitions` WRITE;
  603. /*!40000 ALTER TABLE `custom_attribute_definitions` DISABLE KEYS */;
  604. /*!40000 ALTER TABLE `custom_attribute_definitions` ENABLE KEYS */;
  605. UNLOCK TABLES;
  606.  
  607. --
  608. -- Table structure for table `custom_attribute_values`
  609. --
  610.  
  611. DROP TABLE IF EXISTS `custom_attribute_values`;
  612. /*!40101 SET @saved_cs_client = @@character_set_client */;
  613. /*!40101 SET character_set_client = utf8 */;
  614. CREATE TABLE `custom_attribute_values` (
  615. `id` int(11) NOT NULL AUTO_INCREMENT,
  616. `modified_by_id` int(11) DEFAULT NULL,
  617. `context_id` int(11) DEFAULT NULL,
  618. `created_at` datetime NOT NULL,
  619. `updated_at` datetime NOT NULL,
  620. `custom_attribute_id` int(11) NOT NULL,
  621. `attributable_id` int(11) DEFAULT NULL,
  622. `attributable_type` varchar(250) DEFAULT NULL,
  623. `attribute_value` text,
  624. `attribute_object_id` int(11) DEFAULT NULL,
  625. PRIMARY KEY (`id`),
  626. UNIQUE KEY `uq_custom_attribute_value` (`custom_attribute_id`,`attributable_id`),
  627. KEY `custom_attribute_values_ibfk_1` (`custom_attribute_id`),
  628. KEY `ix_custom_attributes_attributable` (`attributable_id`,`attributable_type`),
  629. CONSTRAINT `custom_attribute_values_ibfk_1` FOREIGN KEY (`custom_attribute_id`) REFERENCES `custom_attribute_definitions` (`id`) ON DELETE CASCADE
  630. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  631. /*!40101 SET character_set_client = @saved_cs_client */;
  632.  
  633. --
  634. -- Dumping data for table `custom_attribute_values`
  635. --
  636.  
  637. LOCK TABLES `custom_attribute_values` WRITE;
  638. /*!40000 ALTER TABLE `custom_attribute_values` DISABLE KEYS */;
  639. /*!40000 ALTER TABLE `custom_attribute_values` ENABLE KEYS */;
  640. UNLOCK TABLES;
  641.  
  642. --
  643. -- Table structure for table `cycle_task_entries`
  644. --
  645.  
  646. DROP TABLE IF EXISTS `cycle_task_entries`;
  647. /*!40101 SET @saved_cs_client = @@character_set_client */;
  648. /*!40101 SET character_set_client = utf8 */;
  649. CREATE TABLE `cycle_task_entries` (
  650. `id` int(11) NOT NULL AUTO_INCREMENT,
  651. `cycle_task_group_object_task_id` int(11) NOT NULL,
  652. `description` text,
  653. `created_at` datetime NOT NULL,
  654. `modified_by_id` int(11) DEFAULT NULL,
  655. `updated_at` datetime NOT NULL,
  656. `context_id` int(11) DEFAULT NULL,
  657. `cycle_id` int(11) NOT NULL,
  658. `_is_declining_review` tinyint(1) DEFAULT NULL,
  659. PRIMARY KEY (`id`),
  660. KEY `fk_cycle_task_entries_contexts` (`context_id`),
  661. KEY `ix_cycle_task_entries_updated_at` (`updated_at`),
  662. KEY `cycle_task_entries_cycle` (`cycle_id`),
  663. KEY `cycle_task_entries_ibfk_2` (`cycle_task_group_object_task_id`),
  664. CONSTRAINT `cycle_task_entries_cycle` FOREIGN KEY (`cycle_id`) REFERENCES `cycles` (`id`) ON DELETE CASCADE,
  665. CONSTRAINT `cycle_task_entries_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  666. CONSTRAINT `cycle_task_entries_ibfk_2` FOREIGN KEY (`cycle_task_group_object_task_id`) REFERENCES `cycle_task_group_object_tasks` (`id`) ON DELETE CASCADE
  667. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  668. /*!40101 SET character_set_client = @saved_cs_client */;
  669.  
  670. --
  671. -- Dumping data for table `cycle_task_entries`
  672. --
  673.  
  674. LOCK TABLES `cycle_task_entries` WRITE;
  675. /*!40000 ALTER TABLE `cycle_task_entries` DISABLE KEYS */;
  676. /*!40000 ALTER TABLE `cycle_task_entries` ENABLE KEYS */;
  677. UNLOCK TABLES;
  678.  
  679. --
  680. -- Table structure for table `cycle_task_group_object_tasks`
  681. --
  682.  
  683. DROP TABLE IF EXISTS `cycle_task_group_object_tasks`;
  684. /*!40101 SET @saved_cs_client = @@character_set_client */;
  685. /*!40101 SET character_set_client = utf8 */;
  686. CREATE TABLE `cycle_task_group_object_tasks` (
  687. `id` int(11) NOT NULL AUTO_INCREMENT,
  688. `cycle_task_group_object_id` int(11) DEFAULT NULL,
  689. `task_group_task_id` int(11) DEFAULT NULL,
  690. `contact_id` int(11) DEFAULT NULL,
  691. `status` varchar(250) DEFAULT NULL,
  692. `end_date` date DEFAULT NULL,
  693. `start_date` date DEFAULT NULL,
  694. `description` text,
  695. `title` varchar(250) NOT NULL,
  696. `created_at` datetime NOT NULL,
  697. `modified_by_id` int(11) DEFAULT NULL,
  698. `updated_at` datetime NOT NULL,
  699. `context_id` int(11) DEFAULT NULL,
  700. `sort_index` varchar(250) NOT NULL,
  701. `cycle_id` int(11) NOT NULL,
  702. `response_options` text NOT NULL,
  703. `selected_response_options` text NOT NULL,
  704. `task_type` varchar(250) NOT NULL,
  705. `cycle_task_group_id` int(11) NOT NULL,
  706. `secondary_contact_id` int(11) DEFAULT NULL,
  707. `slug` varchar(250) NOT NULL,
  708. `finished_date` datetime DEFAULT NULL,
  709. `verified_date` datetime DEFAULT NULL,
  710. PRIMARY KEY (`id`),
  711. UNIQUE KEY `unique_slug` (`slug`),
  712. KEY `cycle_task_group_object_id` (`cycle_task_group_object_id`),
  713. KEY `task_group_task_id` (`task_group_task_id`),
  714. KEY `fk_cycle_task_group_object_tasks_contact` (`contact_id`),
  715. KEY `fk_cycle_task_group_object_tasks_contexts` (`context_id`),
  716. KEY `ix_cycle_task_group_object_tasks_updated_at` (`updated_at`),
  717. KEY `fk_cycle_task_group_object_tasks_secondary_contact` (`secondary_contact_id`),
  718. KEY `cycle_task_group_object_tasks_cycle` (`cycle_id`),
  719. KEY `cycle_task_group_id` (`cycle_task_group_id`),
  720. CONSTRAINT `cycle_task_group_id` FOREIGN KEY (`cycle_task_group_id`) REFERENCES `cycle_task_groups` (`id`) ON DELETE CASCADE,
  721. CONSTRAINT `cycle_task_group_object_tasks_cycle` FOREIGN KEY (`cycle_id`) REFERENCES `cycles` (`id`) ON DELETE CASCADE,
  722. CONSTRAINT `cycle_task_group_object_tasks_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  723. CONSTRAINT `cycle_task_group_object_tasks_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  724. CONSTRAINT `cycle_task_group_object_tasks_ibfk_3` FOREIGN KEY (`cycle_task_group_object_id`) REFERENCES `cycle_task_group_objects` (`id`)
  725. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
  726. /*!40101 SET character_set_client = @saved_cs_client */;
  727.  
  728. --
  729. -- Dumping data for table `cycle_task_group_object_tasks`
  730. --
  731.  
  732. LOCK TABLES `cycle_task_group_object_tasks` WRITE;
  733. /*!40000 ALTER TABLE `cycle_task_group_object_tasks` DISABLE KEYS */;
  734. INSERT INTO `cycle_task_group_object_tasks` VALUES (1,NULL,2,15,'Assigned','2016-11-10','2016-11-08','test','Weekly','2016-11-10 16:51:18',15,'2016-11-10 16:51:19',25,'',1,'[]','[]','text',1,NULL,'CYCLETASK-1',NULL,NULL),(2,NULL,8,15,'Assigned','2016-11-10','2016-11-08',NULL,'Weekly','2016-11-10 16:51:18',15,'2016-11-10 16:51:19',25,'',1,'[\"test\"]','[]','menu',1,NULL,'CYCLETASK-2',NULL,NULL),(3,NULL,11,1,'Assigned','2016-11-10','2016-11-07','','uoe','2016-11-10 16:51:18',15,'2016-11-10 16:51:19',25,'4503599627370495.5',1,'[]','[]','text',2,NULL,'CYCLETASK-3',NULL,NULL),(4,NULL,12,1,'Assigned','2016-11-10','2016-11-07','','uoeauaouoa','2016-11-10 16:51:18',15,'2016-11-10 16:51:19',25,'4503599627370495.5',1,'[]','[]','text',2,NULL,'CYCLETASK-4',NULL,NULL),(5,NULL,2,15,'Assigned','2016-11-18','2016-11-15','test','Weekly','2016-11-10 16:52:01',1,'2016-11-10 16:52:01',25,'',2,'[]','[]','text',3,NULL,'CYCLETASK-5',NULL,NULL),(6,NULL,8,17,'Assigned','2016-11-18','2016-11-15',NULL,'Weekly','2016-11-10 16:52:01',1,'2016-11-10 16:52:01',25,'',2,'[\"test\"]','[]','menu',3,NULL,'CYCLETASK-6',NULL,NULL),(7,NULL,11,27,'Assigned','2016-11-17','2016-11-14','','uoe','2016-11-10 16:52:01',1,'2016-11-10 16:52:45',25,'4503599627370495.5',2,'[]','[]','text',4,NULL,'CYCLETASK-7',NULL,NULL),(8,NULL,12,20,'Declined','2016-11-17','2016-11-14','','uoeauaouoa','2016-11-10 16:52:01',1,'2016-11-10 16:52:51',25,'4503599627370495.5',2,'[]','[]','text',4,NULL,'CYCLETASK-8',NULL,NULL);
  735. /*!40000 ALTER TABLE `cycle_task_group_object_tasks` ENABLE KEYS */;
  736. UNLOCK TABLES;
  737.  
  738. --
  739. -- Table structure for table `cycle_task_group_objects`
  740. --
  741.  
  742. DROP TABLE IF EXISTS `cycle_task_group_objects`;
  743. /*!40101 SET @saved_cs_client = @@character_set_client */;
  744. /*!40101 SET character_set_client = utf8 */;
  745. CREATE TABLE `cycle_task_group_objects` (
  746. `id` int(11) NOT NULL AUTO_INCREMENT,
  747. `cycle_task_group_id` int(11) NOT NULL,
  748. `task_group_object_id` int(11) NOT NULL,
  749. `contact_id` int(11) DEFAULT NULL,
  750. `status` varchar(250) DEFAULT NULL,
  751. `end_date` date DEFAULT NULL,
  752. `start_date` date DEFAULT NULL,
  753. `description` text,
  754. `title` varchar(250) NOT NULL,
  755. `created_at` datetime NOT NULL,
  756. `modified_by_id` int(11) DEFAULT NULL,
  757. `updated_at` datetime NOT NULL,
  758. `context_id` int(11) DEFAULT NULL,
  759. `cycle_id` int(11) NOT NULL,
  760. `object_id` int(11) NOT NULL,
  761. `object_type` varchar(250) NOT NULL,
  762. `next_due_date` date DEFAULT NULL,
  763. `secondary_contact_id` int(11) DEFAULT NULL,
  764. PRIMARY KEY (`id`),
  765. KEY `task_group_object_id` (`task_group_object_id`),
  766. KEY `fk_cycle_task_group_objects_contact` (`contact_id`),
  767. KEY `fk_cycle_task_group_objects_contexts` (`context_id`),
  768. KEY `ix_cycle_task_group_objects_updated_at` (`updated_at`),
  769. KEY `fk_cycle_task_group_objects_secondary_contact` (`secondary_contact_id`),
  770. KEY `cycle_task_group_objects_cycle` (`cycle_id`),
  771. KEY `cycle_task_group_objects_ibfk_3` (`cycle_task_group_id`),
  772. CONSTRAINT `cycle_task_group_objects_cycle` FOREIGN KEY (`cycle_id`) REFERENCES `cycles` (`id`) ON DELETE CASCADE,
  773. CONSTRAINT `cycle_task_group_objects_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  774. CONSTRAINT `cycle_task_group_objects_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  775. CONSTRAINT `cycle_task_group_objects_ibfk_3` FOREIGN KEY (`cycle_task_group_id`) REFERENCES `cycle_task_groups` (`id`) ON DELETE CASCADE
  776. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  777. /*!40101 SET character_set_client = @saved_cs_client */;
  778.  
  779. --
  780. -- Dumping data for table `cycle_task_group_objects`
  781. --
  782.  
  783. LOCK TABLES `cycle_task_group_objects` WRITE;
  784. /*!40000 ALTER TABLE `cycle_task_group_objects` DISABLE KEYS */;
  785. /*!40000 ALTER TABLE `cycle_task_group_objects` ENABLE KEYS */;
  786. UNLOCK TABLES;
  787.  
  788. --
  789. -- Table structure for table `cycle_task_groups`
  790. --
  791.  
  792. DROP TABLE IF EXISTS `cycle_task_groups`;
  793. /*!40101 SET @saved_cs_client = @@character_set_client */;
  794. /*!40101 SET character_set_client = utf8 */;
  795. CREATE TABLE `cycle_task_groups` (
  796. `id` int(11) NOT NULL AUTO_INCREMENT,
  797. `cycle_id` int(11) NOT NULL,
  798. `task_group_id` int(11) DEFAULT NULL,
  799. `contact_id` int(11) DEFAULT NULL,
  800. `status` varchar(250) DEFAULT NULL,
  801. `end_date` date DEFAULT NULL,
  802. `start_date` date DEFAULT NULL,
  803. `description` text,
  804. `title` varchar(250) NOT NULL,
  805. `created_at` datetime NOT NULL,
  806. `modified_by_id` int(11) DEFAULT NULL,
  807. `updated_at` datetime NOT NULL,
  808. `context_id` int(11) DEFAULT NULL,
  809. `sort_index` varchar(250) NOT NULL,
  810. `next_due_date` date DEFAULT NULL,
  811. `secondary_contact_id` int(11) DEFAULT NULL,
  812. `slug` varchar(250) NOT NULL,
  813. PRIMARY KEY (`id`),
  814. UNIQUE KEY `unique_slug` (`slug`),
  815. KEY `task_group_id` (`task_group_id`),
  816. KEY `fk_cycle_task_groups_contact` (`contact_id`),
  817. KEY `fk_cycle_task_groups_contexts` (`context_id`),
  818. KEY `ix_cycle_task_groups_updated_at` (`updated_at`),
  819. KEY `fk_cycle_task_groups_secondary_contact` (`secondary_contact_id`),
  820. KEY `cycle_task_groups_ibfk_3` (`cycle_id`),
  821. CONSTRAINT `cycle_task_groups_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  822. CONSTRAINT `cycle_task_groups_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  823. CONSTRAINT `cycle_task_groups_ibfk_3` FOREIGN KEY (`cycle_id`) REFERENCES `cycles` (`id`) ON DELETE CASCADE
  824. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
  825. /*!40101 SET character_set_client = @saved_cs_client */;
  826.  
  827. --
  828. -- Dumping data for table `cycle_task_groups`
  829. --
  830.  
  831. LOCK TABLES `cycle_task_groups` WRITE;
  832. /*!40000 ALTER TABLE `cycle_task_groups` DISABLE KEYS */;
  833. INSERT INTO `cycle_task_groups` VALUES (1,1,2,15,'Assigned','2016-11-10','2016-11-08','test','tg-2','2016-11-10 16:51:18',15,'2016-11-10 16:51:19',25,'','2016-11-10',NULL,'CYCLEGROUP-1'),(2,1,7,15,'Assigned','2016-11-10','2016-11-07','test','tg-7','2016-11-10 16:51:18',15,'2016-11-10 16:51:19',25,'','2016-11-10',NULL,'CYCLEGROUP-2'),(3,2,2,15,'Assigned','2016-11-18','2016-11-15','test','tg-2','2016-11-10 16:52:01',1,'2016-11-10 16:52:51',25,'','2016-11-18',NULL,'CYCLEGROUP-3'),(4,2,7,15,'InProgress','2016-11-17','2016-11-14','test','tg-7','2016-11-10 16:52:01',1,'2016-11-10 16:52:51',25,'','2016-11-17',NULL,'CYCLEGROUP-4');
  834. /*!40000 ALTER TABLE `cycle_task_groups` ENABLE KEYS */;
  835. UNLOCK TABLES;
  836.  
  837. --
  838. -- Table structure for table `cycles`
  839. --
  840.  
  841. DROP TABLE IF EXISTS `cycles`;
  842. /*!40101 SET @saved_cs_client = @@character_set_client */;
  843. /*!40101 SET character_set_client = utf8 */;
  844. CREATE TABLE `cycles` (
  845. `id` int(11) NOT NULL AUTO_INCREMENT,
  846. `workflow_id` int(11) NOT NULL,
  847. `contact_id` int(11) DEFAULT NULL,
  848. `status` varchar(250) DEFAULT NULL,
  849. `end_date` date DEFAULT NULL,
  850. `start_date` date DEFAULT NULL,
  851. `description` text,
  852. `title` varchar(250) NOT NULL,
  853. `slug` varchar(250) NOT NULL,
  854. `created_at` datetime NOT NULL,
  855. `modified_by_id` int(11) DEFAULT NULL,
  856. `updated_at` datetime NOT NULL,
  857. `context_id` int(11) DEFAULT NULL,
  858. `is_current` tinyint(1) NOT NULL,
  859. `next_due_date` date DEFAULT NULL,
  860. `secondary_contact_id` int(11) DEFAULT NULL,
  861. PRIMARY KEY (`id`),
  862. UNIQUE KEY `uq_cycles` (`slug`),
  863. KEY `fk_cycles_contact` (`contact_id`),
  864. KEY `fk_cycles_contexts` (`context_id`),
  865. KEY `ix_cycles_updated_at` (`updated_at`),
  866. KEY `fk_cycles_secondary_contact` (`secondary_contact_id`),
  867. KEY `cycles_ibfk_3` (`workflow_id`),
  868. CONSTRAINT `cycles_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  869. CONSTRAINT `cycles_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  870. CONSTRAINT `cycles_ibfk_3` FOREIGN KEY (`workflow_id`) REFERENCES `workflows` (`id`) ON DELETE CASCADE
  871. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
  872. /*!40101 SET character_set_client = @saved_cs_client */;
  873.  
  874. --
  875. -- Dumping data for table `cycles`
  876. --
  877.  
  878. LOCK TABLES `cycles` WRITE;
  879. /*!40000 ALTER TABLE `cycles` DISABLE KEYS */;
  880. INSERT INTO `cycles` VALUES (1,2,NULL,'Assigned','2016-11-10','2016-11-07','test','wf-2','CYCLE-1','2016-11-10 16:51:18',NULL,'2016-11-10 16:51:19',25,1,'2016-11-10',NULL),(2,2,NULL,'InProgress','2016-11-18','2016-11-14','test','wf-2','CYCLE-2','2016-11-10 16:52:01',1,'2016-11-10 16:52:51',25,1,'2016-11-17',NULL);
  881. /*!40000 ALTER TABLE `cycles` ENABLE KEYS */;
  882. UNLOCK TABLES;
  883.  
  884. --
  885. -- Table structure for table `data_assets`
  886. --
  887.  
  888. DROP TABLE IF EXISTS `data_assets`;
  889. /*!40101 SET @saved_cs_client = @@character_set_client */;
  890. /*!40101 SET character_set_client = utf8 */;
  891. CREATE TABLE `data_assets` (
  892. `id` int(11) NOT NULL AUTO_INCREMENT,
  893. `modified_by_id` int(11) DEFAULT NULL,
  894. `created_at` datetime NOT NULL,
  895. `updated_at` datetime NOT NULL,
  896. `description` text,
  897. `url` varchar(250) DEFAULT NULL,
  898. `start_date` date DEFAULT NULL,
  899. `end_date` date DEFAULT NULL,
  900. `slug` varchar(250) NOT NULL,
  901. `title` varchar(250) NOT NULL,
  902. `context_id` int(11) DEFAULT NULL,
  903. `contact_id` int(11) DEFAULT NULL,
  904. `notes` text,
  905. `status` varchar(250) DEFAULT NULL,
  906. `reference_url` varchar(250) DEFAULT NULL,
  907. `secondary_contact_id` int(11) DEFAULT NULL,
  908. `os_state` varchar(16) NOT NULL,
  909. PRIMARY KEY (`id`),
  910. UNIQUE KEY `uq_data_assets` (`slug`),
  911. UNIQUE KEY `uq_t_data_assets` (`title`),
  912. KEY `fk_data_assets_contexts` (`context_id`),
  913. KEY `fk_data_assets_contact` (`contact_id`),
  914. KEY `ix_data_assets_updated_at` (`updated_at`),
  915. KEY `fk_data_assets_secondary_contact` (`secondary_contact_id`),
  916. CONSTRAINT `fk_data_assets_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  917. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  918. /*!40101 SET character_set_client = @saved_cs_client */;
  919.  
  920. --
  921. -- Dumping data for table `data_assets`
  922. --
  923.  
  924. LOCK TABLES `data_assets` WRITE;
  925. /*!40000 ALTER TABLE `data_assets` DISABLE KEYS */;
  926. INSERT INTO `data_assets` VALUES (1,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-1','da-1',NULL,15,'this is a note','Draft','ggrc.com',16,'Modified'),(2,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-2','da-2',NULL,15,'this is a note','Final','ggrc.com',16,'Modified'),(3,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-3','da-3',NULL,15,'this is a note','Effective','ggrc.com',16,'Modified'),(4,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-4','da-4',NULL,15,'this is a note','Ineffective','ggrc.com',16,'Modified'),(5,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-5','da-5',NULL,15,'this is a note','Launched','ggrc.com',16,'Modified'),(6,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-6','da-6',NULL,15,'this is a note','Not Launched','ggrc.com',16,'Modified'),(7,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-7','da-7',NULL,15,'this is a note','In Scope','ggrc.com',16,'Modified'),(8,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-8','da-8',NULL,15,'this is a note','Not in Scope','ggrc.com',16,'Modified'),(9,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-9','da-9',NULL,15,'this is a note','Deprecated','ggrc.com',16,'Modified'),(10,1,'2016-11-10 16:49:42','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','da-10','da-10',NULL,15,'this is a note','Draft','ggrc.com',16,'Modified');
  927. /*!40000 ALTER TABLE `data_assets` ENABLE KEYS */;
  928. UNLOCK TABLES;
  929.  
  930. --
  931. -- Table structure for table `directives`
  932. --
  933.  
  934. DROP TABLE IF EXISTS `directives`;
  935. /*!40101 SET @saved_cs_client = @@character_set_client */;
  936. /*!40101 SET character_set_client = utf8 */;
  937. CREATE TABLE `directives` (
  938. `id` int(11) NOT NULL AUTO_INCREMENT,
  939. `modified_by_id` int(11) DEFAULT NULL,
  940. `created_at` datetime NOT NULL,
  941. `updated_at` datetime NOT NULL,
  942. `description` text,
  943. `url` varchar(250) DEFAULT NULL,
  944. `start_date` date DEFAULT NULL,
  945. `end_date` date DEFAULT NULL,
  946. `slug` varchar(250) NOT NULL,
  947. `title` varchar(250) NOT NULL,
  948. `version` varchar(250) DEFAULT NULL,
  949. `organization` varchar(250) DEFAULT NULL,
  950. `scope` text,
  951. `kind_id` int(11) DEFAULT NULL,
  952. `audit_start_date` datetime DEFAULT NULL,
  953. `audit_frequency_id` int(11) DEFAULT NULL,
  954. `audit_duration_id` int(11) DEFAULT NULL,
  955. `kind` varchar(250) DEFAULT NULL,
  956. `context_id` int(11) DEFAULT NULL,
  957. `meta_kind` varchar(250) DEFAULT NULL,
  958. `contact_id` int(11) DEFAULT NULL,
  959. `notes` text,
  960. `status` varchar(250) DEFAULT NULL,
  961. `reference_url` varchar(250) DEFAULT NULL,
  962. `secondary_contact_id` int(11) DEFAULT NULL,
  963. `os_state` varchar(16) NOT NULL,
  964. PRIMARY KEY (`id`),
  965. UNIQUE KEY `uq_directives` (`slug`),
  966. UNIQUE KEY `uq_t_directives` (`title`),
  967. KEY `fk_directives_contexts` (`context_id`),
  968. KEY `fk_directives_contact` (`contact_id`),
  969. KEY `ix_directives_meta_kind` (`meta_kind`),
  970. KEY `ix_directives_updated_at` (`updated_at`),
  971. KEY `fk_directives_secondary_contact` (`secondary_contact_id`),
  972. CONSTRAINT `fk_directives_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  973. ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8;
  974. /*!40101 SET character_set_client = @saved_cs_client */;
  975.  
  976. --
  977. -- Dumping data for table `directives`
  978. --
  979.  
  980. LOCK TABLES `directives` WRITE;
  981. /*!40000 ALTER TABLE `directives` DISABLE KEYS */;
  982. INSERT INTO `directives` VALUES (1,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-1','ctr-1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-2','ctr-2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-3','ctr-3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-4','ctr-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-5','ctr-5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-6','ctr-6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-7','ctr-7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-8','ctr-8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-9','ctr-9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','test','google.com','2015-07-01','2015-07-15','ctr-10','ctr-10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contract',15,'this is a note','Draft','ggrc.com',16,'Draft'),(11,1,'2016-11-10 16:49:44','2016-11-10 16:49:48','test','google.com','2015-07-01','2015-07-15','p1','policy 1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Draft','ggrc.com',16,'Modified'),(12,1,'2016-11-10 16:49:44','2016-11-10 16:49:48','test','google.com','2015-07-01','2015-07-15','p2','policy 2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Final','ggrc.com',16,'Modified'),(13,1,'2016-11-10 16:49:44','2016-11-10 16:49:48','test','google.com','2015-07-01','2015-07-15','p3','policy 3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Effective','ggrc.com',16,'Modified'),(14,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','p4','policy 4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(15,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','p5','policy 5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Launched','ggrc.com',16,'Draft'),(16,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','p6','policy 6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(17,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','p7','policy 7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','In Scope','ggrc.com',16,'Draft'),(18,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','p8','policy 8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(19,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','p9','policy 9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(20,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','p10','policy 10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Policy',15,'this is a note','Draft','ggrc.com',16,'Draft'),(21,1,'2016-11-10 16:49:44','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','reg-1','reg 1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Draft','ggrc.com',16,'Modified'),(22,1,'2016-11-10 16:49:44','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','reg-2','reg 2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Final','ggrc.com',16,'Modified'),(23,1,'2016-11-10 16:49:44','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','reg-3','reg 3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Effective','ggrc.com',16,'Modified'),(24,1,'2016-11-10 16:49:44','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','reg-4','reg 4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Ineffective','ggrc.com',16,'Modified'),(25,1,'2016-11-10 16:49:44','2016-11-10 16:49:47','test','google.com','2015-07-01','2015-07-15','reg-5','reg 5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Launched','ggrc.com',16,'Modified'),(26,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','reg-6','reg 6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(27,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','reg-7','reg 7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','In Scope','ggrc.com',16,'Draft'),(28,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','reg-8','reg 8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(29,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','reg-9','reg 9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(30,1,'2016-11-10 16:49:44','2016-11-10 16:49:44','test','google.com','2015-07-01','2015-07-15','reg-10','reg 10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regulation',15,'this is a note','Draft','ggrc.com',16,'Draft'),(31,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','2015-07-01','2015-07-15','std-1','std 1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Draft','ggrc.com',16,'Modified'),(32,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','2015-07-01','2015-07-15','std-2','std 2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Final','ggrc.com',16,'Modified'),(33,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','2015-07-01','2015-07-15','std-3','std 3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Effective','ggrc.com',16,'Modified'),(34,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-4','std 4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(35,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-5','std 5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Launched','ggrc.com',16,'Draft'),(36,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-6','std 6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(37,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-7','std 7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','In Scope','ggrc.com',16,'Draft'),(38,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-8','std 8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(39,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-9','std 9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(40,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-10','std 10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Draft','ggrc.com',16,'Draft'),(41,1,'2016-11-10 16:49:45','2016-11-10 16:49:45','test','google.com','2015-07-01','2015-07-15','std-11','std 11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',15,'this is a note','Draft','ggrc.com',16,'Draft');
  983. /*!40000 ALTER TABLE `directives` ENABLE KEYS */;
  984. UNLOCK TABLES;
  985.  
  986. --
  987. -- Table structure for table `documents`
  988. --
  989.  
  990. DROP TABLE IF EXISTS `documents`;
  991. /*!40101 SET @saved_cs_client = @@character_set_client */;
  992. /*!40101 SET character_set_client = utf8 */;
  993. CREATE TABLE `documents` (
  994. `id` int(11) NOT NULL AUTO_INCREMENT,
  995. `modified_by_id` int(11) DEFAULT NULL,
  996. `created_at` datetime NOT NULL,
  997. `updated_at` datetime NOT NULL,
  998. `title` varchar(250) DEFAULT NULL,
  999. `link` varchar(250) DEFAULT NULL,
  1000. `description` text,
  1001. `kind_id` int(11) DEFAULT NULL,
  1002. `year_id` int(11) DEFAULT NULL,
  1003. `language_id` int(11) DEFAULT NULL,
  1004. `context_id` int(11) DEFAULT NULL,
  1005. PRIMARY KEY (`id`),
  1006. KEY `fk_documents_contexts` (`context_id`),
  1007. KEY `ix_documents_updated_at` (`updated_at`),
  1008. CONSTRAINT `fk_documents_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1009. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1010. /*!40101 SET character_set_client = @saved_cs_client */;
  1011.  
  1012. --
  1013. -- Dumping data for table `documents`
  1014. --
  1015.  
  1016. LOCK TABLES `documents` WRITE;
  1017. /*!40000 ALTER TABLE `documents` DISABLE KEYS */;
  1018. /*!40000 ALTER TABLE `documents` ENABLE KEYS */;
  1019. UNLOCK TABLES;
  1020.  
  1021. --
  1022. -- Table structure for table `events`
  1023. --
  1024.  
  1025. DROP TABLE IF EXISTS `events`;
  1026. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1027. /*!40101 SET character_set_client = utf8 */;
  1028. CREATE TABLE `events` (
  1029. `id` int(11) NOT NULL AUTO_INCREMENT,
  1030. `modified_by_id` int(11) DEFAULT NULL,
  1031. `created_at` datetime NOT NULL,
  1032. `action` enum('POST','PUT','DELETE','BULK','GET') NOT NULL,
  1033. `resource_id` int(11) DEFAULT NULL,
  1034. `resource_type` varchar(250) DEFAULT NULL,
  1035. `context_id` int(11) DEFAULT NULL,
  1036. `updated_at` datetime NOT NULL,
  1037. PRIMARY KEY (`id`),
  1038. KEY `events_modified_by` (`modified_by_id`),
  1039. KEY `fk_events_contexts` (`context_id`),
  1040. KEY `ix_events_updated_at` (`updated_at`),
  1041. CONSTRAINT `events_modified_by` FOREIGN KEY (`modified_by_id`) REFERENCES `people` (`id`),
  1042. CONSTRAINT `fk_events_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1043. ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8;
  1044. /*!40101 SET character_set_client = @saved_cs_client */;
  1045.  
  1046. --
  1047. -- Dumping data for table `events`
  1048. --
  1049.  
  1050. LOCK TABLES `events` WRITE;
  1051. /*!40000 ALTER TABLE `events` DISABLE KEYS */;
  1052. INSERT INTO `events` VALUES (1,1,'2016-11-10 16:49:15','GET',1,'Person',NULL,'2016-11-10 16:49:15'),(2,1,'2016-11-10 16:49:40','BULK',0,NULL,0,'2016-11-10 16:49:40'),(3,1,'2016-11-10 16:49:40','BULK',0,NULL,0,'2016-11-10 16:49:40'),(4,1,'2016-11-10 16:49:41','BULK',0,NULL,0,'2016-11-10 16:49:41'),(5,1,'2016-11-10 16:49:41','BULK',0,NULL,0,'2016-11-10 16:49:41'),(6,1,'2016-11-10 16:49:41','BULK',0,NULL,0,'2016-11-10 16:49:41'),(7,1,'2016-11-10 16:49:41','BULK',0,NULL,0,'2016-11-10 16:49:41'),(8,1,'2016-11-10 16:49:41','BULK',0,NULL,0,'2016-11-10 16:49:41'),(9,1,'2016-11-10 16:49:41','BULK',0,NULL,0,'2016-11-10 16:49:41'),(10,1,'2016-11-10 16:49:42','BULK',0,NULL,0,'2016-11-10 16:49:42'),(11,1,'2016-11-10 16:49:42','BULK',0,NULL,0,'2016-11-10 16:49:42'),(12,1,'2016-11-10 16:49:42','BULK',0,NULL,0,'2016-11-10 16:49:42'),(13,1,'2016-11-10 16:49:42','BULK',0,NULL,0,'2016-11-10 16:49:42'),(14,1,'2016-11-10 16:49:42','BULK',0,NULL,0,'2016-11-10 16:49:42'),(15,1,'2016-11-10 16:49:43','BULK',0,NULL,0,'2016-11-10 16:49:43'),(16,1,'2016-11-10 16:49:43','BULK',0,NULL,0,'2016-11-10 16:49:43'),(17,1,'2016-11-10 16:49:43','BULK',0,NULL,0,'2016-11-10 16:49:43'),(18,1,'2016-11-10 16:49:43','BULK',0,NULL,0,'2016-11-10 16:49:43'),(19,1,'2016-11-10 16:49:44','BULK',0,NULL,0,'2016-11-10 16:49:44'),(20,1,'2016-11-10 16:49:44','BULK',0,NULL,0,'2016-11-10 16:49:44'),(21,1,'2016-11-10 16:49:44','BULK',0,NULL,0,'2016-11-10 16:49:44'),(22,1,'2016-11-10 16:49:45','BULK',0,NULL,0,'2016-11-10 16:49:45'),(23,1,'2016-11-10 16:49:45','BULK',0,NULL,0,'2016-11-10 16:49:45'),(24,1,'2016-11-10 16:49:45','BULK',0,NULL,0,'2016-11-10 16:49:45'),(25,1,'2016-11-10 16:49:45','BULK',0,NULL,0,'2016-11-10 16:49:45'),(26,1,'2016-11-10 16:49:46','BULK',0,NULL,0,'2016-11-10 16:49:46'),(27,1,'2016-11-10 16:49:46','BULK',0,NULL,0,'2016-11-10 16:49:46'),(28,1,'2016-11-10 16:49:46','BULK',0,NULL,0,'2016-11-10 16:49:46'),(29,1,'2016-11-10 16:49:46','BULK',0,NULL,0,'2016-11-10 16:49:46'),(30,1,'2016-11-10 16:49:47','BULK',0,NULL,0,'2016-11-10 16:49:47'),(31,1,'2016-11-10 16:49:47','BULK',0,NULL,0,'2016-11-10 16:49:47'),(32,1,'2016-11-10 16:49:47','BULK',0,NULL,0,'2016-11-10 16:49:47'),(33,1,'2016-11-10 16:49:48','BULK',0,NULL,0,'2016-11-10 16:49:48'),(34,1,'2016-11-10 16:49:48','BULK',0,NULL,0,'2016-11-10 16:49:48'),(35,1,'2016-11-10 16:49:48','BULK',0,NULL,0,'2016-11-10 16:49:48'),(36,1,'2016-11-10 16:49:49','BULK',0,NULL,0,'2016-11-10 16:49:49'),(37,1,'2016-11-10 16:51:07','POST',11,'TaskGroupTask',25,'2016-11-10 16:51:07'),(38,1,'2016-11-10 16:51:09','POST',12,'TaskGroupTask',25,'2016-11-10 16:51:09'),(39,1,'2016-11-10 16:51:19','PUT',2,'Workflow',25,'2016-11-10 16:51:19'),(40,1,'2016-11-10 16:51:34','PUT',8,'TaskGroupTask',25,'2016-11-10 16:51:34'),(41,1,'2016-11-10 16:51:50','PUT',12,'TaskGroupTask',25,'2016-11-10 16:51:50'),(42,1,'2016-11-10 16:52:02','POST',2,'Cycle',25,'2016-11-10 16:52:02'),(43,1,'2016-11-10 16:52:45','PUT',7,'CycleTaskGroupObjectTask',25,'2016-11-10 16:52:45'),(44,1,'2016-11-10 16:52:49','PUT',8,'CycleTaskGroupObjectTask',25,'2016-11-10 16:52:49'),(45,1,'2016-11-10 16:52:49','PUT',8,'CycleTaskGroupObjectTask',25,'2016-11-10 16:52:49'),(46,1,'2016-11-10 16:52:51','PUT',8,'CycleTaskGroupObjectTask',25,'2016-11-10 16:52:51'),(47,1,'2016-11-10 16:53:35','DELETE',121,'UserRole',25,'2016-11-10 16:53:35'),(48,1,'2016-11-10 16:53:40','DELETE',18,'WorkflowPerson',25,'2016-11-10 16:53:40');
  1053. /*!40000 ALTER TABLE `events` ENABLE KEYS */;
  1054. UNLOCK TABLES;
  1055.  
  1056. --
  1057. -- Table structure for table `facilities`
  1058. --
  1059.  
  1060. DROP TABLE IF EXISTS `facilities`;
  1061. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1062. /*!40101 SET character_set_client = utf8 */;
  1063. CREATE TABLE `facilities` (
  1064. `id` int(11) NOT NULL AUTO_INCREMENT,
  1065. `modified_by_id` int(11) DEFAULT NULL,
  1066. `created_at` datetime NOT NULL,
  1067. `updated_at` datetime NOT NULL,
  1068. `description` text,
  1069. `url` varchar(250) DEFAULT NULL,
  1070. `start_date` date DEFAULT NULL,
  1071. `end_date` date DEFAULT NULL,
  1072. `slug` varchar(250) NOT NULL,
  1073. `title` varchar(250) NOT NULL,
  1074. `context_id` int(11) DEFAULT NULL,
  1075. `contact_id` int(11) DEFAULT NULL,
  1076. `notes` text,
  1077. `status` varchar(250) DEFAULT NULL,
  1078. `reference_url` varchar(250) DEFAULT NULL,
  1079. `secondary_contact_id` int(11) DEFAULT NULL,
  1080. `os_state` varchar(16) NOT NULL,
  1081. PRIMARY KEY (`id`),
  1082. UNIQUE KEY `uq_facilities` (`slug`),
  1083. UNIQUE KEY `uq_t_facilities` (`title`),
  1084. KEY `fk_facilities_contexts` (`context_id`),
  1085. KEY `fk_facilities_contact` (`contact_id`),
  1086. KEY `ix_facilities_updated_at` (`updated_at`),
  1087. KEY `fk_facilities_secondary_contact` (`secondary_contact_id`),
  1088. CONSTRAINT `fk_facilities_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1089. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  1090. /*!40101 SET character_set_client = @saved_cs_client */;
  1091.  
  1092. --
  1093. -- Dumping data for table `facilities`
  1094. --
  1095.  
  1096. LOCK TABLES `facilities` WRITE;
  1097. /*!40000 ALTER TABLE `facilities` DISABLE KEYS */;
  1098. INSERT INTO `facilities` VALUES (1,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-1','fac-1',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-2','fac-2',NULL,15,'this is a note','Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-3','fac-3',NULL,15,'this is a note','Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-4','fac-4',NULL,15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-5','fac-5',NULL,15,'this is a note','Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-6','fac-6',NULL,15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-7','fac-7',NULL,15,'this is a note','In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-8','fac-8',NULL,15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-9','fac-9',NULL,15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','fac-10','fac-10',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft');
  1099. /*!40000 ALTER TABLE `facilities` ENABLE KEYS */;
  1100. UNLOCK TABLES;
  1101.  
  1102. --
  1103. -- Table structure for table `fulltext_record_properties`
  1104. --
  1105.  
  1106. DROP TABLE IF EXISTS `fulltext_record_properties`;
  1107. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1108. /*!40101 SET character_set_client = utf8 */;
  1109. CREATE TABLE `fulltext_record_properties` (
  1110. `key` int(11) NOT NULL AUTO_INCREMENT,
  1111. `type` varchar(64) NOT NULL,
  1112. `tags` varchar(250) DEFAULT NULL,
  1113. `property` varchar(64) NOT NULL,
  1114. `content` text,
  1115. `context_id` int(11) DEFAULT NULL,
  1116. PRIMARY KEY (`key`,`type`,`property`),
  1117. KEY `ix_fulltext_record_properties_context_id` (`context_id`),
  1118. KEY `ix_fulltext_record_properties_key` (`key`),
  1119. KEY `ix_fulltext_record_properties_tags` (`tags`),
  1120. KEY `ix_fulltext_record_properties_type` (`type`)
  1121. ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8;
  1122. /*!40101 SET character_set_client = @saved_cs_client */;
  1123.  
  1124. --
  1125. -- Dumping data for table `fulltext_record_properties`
  1126. --
  1127.  
  1128. LOCK TABLES `fulltext_record_properties` WRITE;
  1129. /*!40000 ALTER TABLE `fulltext_record_properties` DISABLE KEYS */;
  1130. INSERT INTO `fulltext_record_properties` VALUES (1,'AccessGroup','','description','test',NULL),(1,'AccessGroup','','notes','this is a note',NULL),(1,'AccessGroup','','slug','ag-1',NULL),(1,'AccessGroup','','title','ag-1',NULL),(1,'Assessment','','description','test',NULL),(1,'Assessment','','notes','this is a note',NULL),(1,'Assessment','','slug','ca-1',NULL),(1,'Assessment','','test_plan','plan',NULL),(1,'Assessment','','title','ca-1',NULL),(1,'Audit','','description','test',14),(1,'Audit','','notes',NULL,14),(1,'Audit','','slug','Aud-1',14),(1,'Audit','','title','Aud-1',14),(1,'Clause','','description','test',NULL),(1,'Clause','','notes','this is a note',NULL),(1,'Clause','','slug','cl-1',NULL),(1,'Clause','','title','cl-1',NULL),(1,'Contract','','description','test',NULL),(1,'Contract','','notes','this is a note',NULL),(1,'Contract','','slug','ctr-1',NULL),(1,'Contract','','title','ctr-1',NULL),(1,'Control','','description','test',NULL),(1,'Control','','notes','this is a note',NULL),(1,'Control','','slug','control-1',NULL),(1,'Control','','test_plan','plan',NULL),(1,'Control','','title','control-1',NULL),(1,'Cycle','','description','test',25),(1,'Cycle','','slug','CYCLE-1',25),(1,'Cycle','','title','wf-2',25),(1,'CycleTaskGroup','','description','test',25),(1,'CycleTaskGroup','','slug','CYCLEGROUP-1',25),(1,'CycleTaskGroup','','title','tg-2',25),(1,'CycleTaskGroupObjectTask','','description','test',25),(1,'CycleTaskGroupObjectTask','','slug','CYCLETASK-1',25),(1,'CycleTaskGroupObjectTask','','title','Weekly',25),(1,'DataAsset','','description','test',NULL),(1,'DataAsset','','notes','this is a note',NULL),(1,'DataAsset','','slug','da-1',NULL),(1,'DataAsset','','title','da-1',NULL),(1,'Facility','','description','test',NULL),(1,'Facility','','notes','this is a note',NULL),(1,'Facility','','slug','fac-1',NULL),(1,'Facility','','title','fac-1',NULL),(1,'Issue','','description','test',NULL),(1,'Issue','','notes','this is a note',NULL),(1,'Issue','','slug','iss-1',NULL),(1,'Issue','','test_plan','plan',NULL),(1,'Issue','','title','issue 1',NULL),(1,'Market','','description','test',NULL),(1,'Market','','notes','this is a note',NULL),(1,'Market','','slug','mkt-1',NULL),(1,'Market','','title','mkt-1',NULL),(1,'Objective','','description','test',NULL),(1,'Objective','','notes','this is a note',NULL),(1,'Objective','','slug','obj-1',NULL),(1,'Objective','','title','obj-1',NULL),(1,'OrgGroup','','description','test',NULL),(1,'OrgGroup','','notes','this is a note',NULL),(1,'OrgGroup','','slug','org-1',NULL),(1,'OrgGroup','','title','org-1',NULL),(1,'Person','','company',NULL,NULL),(1,'Person','','email','user@example.com',NULL),(1,'Person','','name','Example User',NULL),(1,'Product','','description','test',NULL),(1,'Product','','notes','this is a note',NULL),(1,'Product','','slug','prod-1',NULL),(1,'Product','','title','prod-1',NULL),(1,'Program','','description','test',4),(1,'Program','','notes','this is a note',4),(1,'Program','','slug','prog-1',4),(1,'Program','','title','program 1',4),(1,'Project','','description','test',NULL),(1,'Project','','notes','this is a note',NULL),(1,'Project','','slug','proj-1',NULL),(1,'Project','','title','proj-1',NULL),(1,'Risk','','description','test',NULL),(1,'Risk','','notes','this is a note',NULL),(1,'Risk','','slug','ra-1',NULL),(1,'Risk','','title','ra-1',NULL),(1,'Section','','description','test',NULL),(1,'Section','','notes','this is a note',NULL),(1,'Section','','slug','sec-1',NULL),(1,'Section','','title','sec-1',NULL),(1,'System','','description','test',NULL),(1,'System','','notes','this is a note',NULL),(1,'System','','slug','sys-1',NULL),(1,'System','','title','sys-1',NULL),(1,'TaskGroup','','description','test',24),(1,'TaskGroup','','slug','tg-1',24),(1,'TaskGroup','','title','tg-1',24),(1,'TaskGroupTask','','description','test',24),(1,'TaskGroupTask','','slug','task-1',24),(1,'TaskGroupTask','','title','One time',24),(1,'Vendor','','description','test',NULL),(1,'Vendor','','notes','this is a note',NULL),(1,'Vendor','','slug','ven-1',NULL),(1,'Vendor','','title','ven-1',NULL),(1,'Workflow','','description','test',24),(1,'Workflow','','slug','wf-1',24),(1,'Workflow','','title','wf-1',24),(2,'AccessGroup','','description','test',NULL),(2,'AccessGroup','','notes','this is a note',NULL),(2,'AccessGroup','','slug','ag-2',NULL),(2,'AccessGroup','','title','ag-2',NULL),(2,'Assessment','','description','test',NULL),(2,'Assessment','','notes','this is a note',NULL),(2,'Assessment','','slug','ca-2',NULL),(2,'Assessment','','test_plan','plan',NULL),(2,'Assessment','','title','ca-2',NULL),(2,'Audit','','description','test',15),(2,'Audit','','notes',NULL,15),(2,'Audit','','slug','Aud-2',15),(2,'Audit','','title','Aud-2',15),(2,'Clause','','description','test',NULL),(2,'Clause','','notes','this is a note',NULL),(2,'Clause','','slug','cl-2',NULL),(2,'Clause','','title','cl-2',NULL),(2,'Contract','','description','test',NULL),(2,'Contract','','notes','this is a note',NULL),(2,'Contract','','slug','ctr-2',NULL),(2,'Contract','','title','ctr-2',NULL),(2,'Control','','description','test',NULL),(2,'Control','','notes','this is a note',NULL),(2,'Control','','slug','control-2',NULL),(2,'Control','','test_plan','plan',NULL),(2,'Control','','title','control-2',NULL),(2,'Cycle','','description','test',25),(2,'Cycle','','slug','CYCLE-2',25),(2,'Cycle','','title','wf-2',25),(2,'CycleTaskGroup','','description','test',25),(2,'CycleTaskGroup','','slug','CYCLEGROUP-2',25),(2,'CycleTaskGroup','','title','tg-7',25),(2,'CycleTaskGroupObjectTask','','description',NULL,25),(2,'CycleTaskGroupObjectTask','','slug','CYCLETASK-2',25),(2,'CycleTaskGroupObjectTask','','title','Weekly',25),(2,'DataAsset','','description','test',NULL),(2,'DataAsset','','notes','this is a note',NULL),(2,'DataAsset','','slug','da-2',NULL),(2,'DataAsset','','title','da-2',NULL),(2,'Facility','','description','test',NULL),(2,'Facility','','notes','this is a note',NULL),(2,'Facility','','slug','fac-2',NULL),(2,'Facility','','title','fac-2',NULL),(2,'Issue','','description','test',NULL),(2,'Issue','','notes','this is a note',NULL),(2,'Issue','','slug','iss-2',NULL),(2,'Issue','','test_plan','plan',NULL),(2,'Issue','','title','issue 2',NULL),(2,'Market','','description','test',NULL),(2,'Market','','notes','this is a note',NULL),(2,'Market','','slug','mkt-2',NULL),(2,'Market','','title','mkt-2',NULL),(2,'Objective','','description','test',NULL),(2,'Objective','','notes','this is a note',NULL),(2,'Objective','','slug','obj-2',NULL),(2,'Objective','','title','obj-2',NULL),(2,'OrgGroup','','description','test',NULL),(2,'OrgGroup','','notes','this is a note',NULL),(2,'OrgGroup','','slug','org-2',NULL),(2,'OrgGroup','','title','org-2',NULL),(2,'Person','','company','google',NULL),(2,'Person','','email','user1@example.com',NULL),(2,'Person','','name','user 1',NULL),(2,'Product','','description','test',NULL),(2,'Product','','notes','this is a note',NULL),(2,'Product','','slug','prod-2',NULL),(2,'Product','','title','prod-2',NULL),(2,'Program','','description','test',5),(2,'Program','','notes','this is a note',5),(2,'Program','','slug','prog-2',5),(2,'Program','','title','program 2',5),(2,'Project','','description','test',NULL),(2,'Project','','notes','this is a note',NULL),(2,'Project','','slug','proj-2',NULL),(2,'Project','','title','proj-2',NULL),(2,'Risk','','description','test',NULL),(2,'Risk','','notes','this is a note',NULL),(2,'Risk','','slug','ra-2',NULL),(2,'Risk','','title','ra-2',NULL),(2,'Section','','description','test',NULL),(2,'Section','','notes','this is a note',NULL),(2,'Section','','slug','sec-2',NULL),(2,'Section','','title','sec-2',NULL),(2,'System','','description','test',NULL),(2,'System','','notes','this is a note',NULL),(2,'System','','slug','sys-2',NULL),(2,'System','','title','sys-2',NULL),(2,'TaskGroup','','description','test',25),(2,'TaskGroup','','slug','tg-2',25),(2,'TaskGroup','','title','tg-2',25),(2,'TaskGroupTask','','description','test',25),(2,'TaskGroupTask','','slug','task-2',25),(2,'TaskGroupTask','','title','Weekly',25),(2,'Vendor','','description','test',NULL),(2,'Vendor','','notes','this is a note',NULL),(2,'Vendor','','slug','ven-2',NULL),(2,'Vendor','','title','ven-2',NULL),(2,'Workflow','','description','test',25),(2,'Workflow','','slug','wf-2',25),(2,'Workflow','','title','wf-2',25),(3,'AccessGroup','','description','test',NULL),(3,'AccessGroup','','notes','this is a note',NULL),(3,'AccessGroup','','slug','ag-3',NULL),(3,'AccessGroup','','title','ag-3',NULL),(3,'Assessment','','description','test',NULL),(3,'Assessment','','notes','this is a note',NULL),(3,'Assessment','','slug','ca-3',NULL),(3,'Assessment','','test_plan','plan',NULL),(3,'Assessment','','title','ca-3',NULL),(3,'Audit','','description','test',16),(3,'Audit','','notes',NULL,16),(3,'Audit','','slug','Aud-3',16),(3,'Audit','','title','Aud-3',16),(3,'Clause','','description','test',NULL),(3,'Clause','','notes','this is a note',NULL),(3,'Clause','','slug','cl-3',NULL),(3,'Clause','','title','cl-3',NULL),(3,'Contract','','description','test',NULL),(3,'Contract','','notes','this is a note',NULL),(3,'Contract','','slug','ctr-3',NULL),(3,'Contract','','title','ctr-3',NULL),(3,'Control','','description','test',NULL),(3,'Control','','notes','this is a note',NULL),(3,'Control','','slug','control-3',NULL),(3,'Control','','test_plan','plan',NULL),(3,'Control','','title','control 3',NULL),(3,'CycleTaskGroup','','description','test',25),(3,'CycleTaskGroup','','slug','CYCLEGROUP-3',25),(3,'CycleTaskGroup','','title','tg-2',25),(3,'CycleTaskGroupObjectTask','','description','',25),(3,'CycleTaskGroupObjectTask','','slug','CYCLETASK-3',25),(3,'CycleTaskGroupObjectTask','','title','uoe',25),(3,'DataAsset','','description','test',NULL),(3,'DataAsset','','notes','this is a note',NULL),(3,'DataAsset','','slug','da-3',NULL),(3,'DataAsset','','title','da-3',NULL),(3,'Facility','','description','test',NULL),(3,'Facility','','notes','this is a note',NULL),(3,'Facility','','slug','fac-3',NULL),(3,'Facility','','title','fac-3',NULL),(3,'Issue','','description','test',NULL),(3,'Issue','','notes','this is a note',NULL),(3,'Issue','','slug','iss-3',NULL),(3,'Issue','','test_plan','plan',NULL),(3,'Issue','','title','issue 3',NULL),(3,'Market','','description','test',NULL),(3,'Market','','notes','this is a note',NULL),(3,'Market','','slug','mkt-3',NULL),(3,'Market','','title','mkt-3',NULL),(3,'Objective','','description','test',NULL),(3,'Objective','','notes','this is a note',NULL),(3,'Objective','','slug','obj-3',NULL),(3,'Objective','','title','obj-3',NULL),(3,'OrgGroup','','description','test',NULL),(3,'OrgGroup','','notes','this is a note',NULL),(3,'OrgGroup','','slug','org-3',NULL),(3,'OrgGroup','','title','org-3',NULL),(3,'Person','','company','google',NULL),(3,'Person','','email','user2@example.com',NULL),(3,'Person','','name','user 2',NULL),(3,'Product','','description','test',NULL),(3,'Product','','notes','this is a note',NULL),(3,'Product','','slug','prod-3',NULL),(3,'Product','','title','prod-3',NULL),(3,'Program','','description','test',6),(3,'Program','','notes','this is a note',6),(3,'Program','','slug','prog-3',6),(3,'Program','','title','program 3',6),(3,'Project','','description','test',NULL),(3,'Project','','notes','this is a note',NULL),(3,'Project','','slug','proj-3',NULL),(3,'Project','','title','proj-3',NULL),(3,'Risk','','description','test',NULL),(3,'Risk','','notes','this is a note',NULL),(3,'Risk','','slug','ra-3',NULL),(3,'Risk','','title','ra-3',NULL),(3,'Section','','description','test',NULL),(3,'Section','','notes','this is a note',NULL),(3,'Section','','slug','sec-3',NULL),(3,'Section','','title','sec-3',NULL),(3,'System','','description','test',NULL),(3,'System','','notes','this is a note',NULL),(3,'System','','slug','sys-3',NULL),(3,'System','','title','sys-3',NULL),(3,'TaskGroup','','description','test',26),(3,'TaskGroup','','slug','tg-3',26),(3,'TaskGroup','','title','tg-3',26),(3,'TaskGroupTask','','description',NULL,26),(3,'TaskGroupTask','','slug','task-3',26),(3,'TaskGroupTask','','title','Monthly',26),(3,'Vendor','','description','test',NULL),(3,'Vendor','','notes','this is a note',NULL),(3,'Vendor','','slug','ven-3',NULL),(3,'Vendor','','title','ven-3',NULL),(3,'Workflow','','description','test',26),(3,'Workflow','','slug','wf-3',26),(3,'Workflow','','title','wf-3',26),(4,'AccessGroup','','description','test',NULL),(4,'AccessGroup','','notes','this is a note',NULL),(4,'AccessGroup','','slug','ag-4',NULL),(4,'AccessGroup','','title','ag-4',NULL),(4,'Assessment','','description','test',NULL),(4,'Assessment','','notes','this is a note',NULL),(4,'Assessment','','slug','ca-4',NULL),(4,'Assessment','','test_plan','plan',NULL),(4,'Assessment','','title','ca-4',NULL),(4,'Audit','','description','test',17),(4,'Audit','','notes',NULL,17),(4,'Audit','','slug','Aud-4',17),(4,'Audit','','title','Aud-4',17),(4,'Clause','','description','test',NULL),(4,'Clause','','notes','this is a note',NULL),(4,'Clause','','slug','cl-4',NULL),(4,'Clause','','title','cl-4',NULL),(4,'Contract','','description','test',NULL),(4,'Contract','','notes','this is a note',NULL),(4,'Contract','','slug','ctr-4',NULL),(4,'Contract','','title','ctr-4',NULL),(4,'Control','','description','test',NULL),(4,'Control','','notes','this is a note',NULL),(4,'Control','','slug','control-4',NULL),(4,'Control','','test_plan','plan',NULL),(4,'Control','','title','control-4',NULL),(4,'CycleTaskGroup','','description','test',25),(4,'CycleTaskGroup','','slug','CYCLEGROUP-4',25),(4,'CycleTaskGroup','','title','tg-7',25),(4,'CycleTaskGroupObjectTask','','description','',25),(4,'CycleTaskGroupObjectTask','','slug','CYCLETASK-4',25),(4,'CycleTaskGroupObjectTask','','title','uoeauaouoa',25),(4,'DataAsset','','description','test',NULL),(4,'DataAsset','','notes','this is a note',NULL),(4,'DataAsset','','slug','da-4',NULL),(4,'DataAsset','','title','da-4',NULL),(4,'Facility','','description','test',NULL),(4,'Facility','','notes','this is a note',NULL),(4,'Facility','','slug','fac-4',NULL),(4,'Facility','','title','fac-4',NULL),(4,'Issue','','description','test',NULL),(4,'Issue','','notes','this is a note',NULL),(4,'Issue','','slug','iss-4',NULL),(4,'Issue','','test_plan','plan',NULL),(4,'Issue','','title','issue 4',NULL),(4,'Market','','description','test',NULL),(4,'Market','','notes','this is a note',NULL),(4,'Market','','slug','mkt-4',NULL),(4,'Market','','title','mkt-4',NULL),(4,'Objective','','description','test',NULL),(4,'Objective','','notes','this is a note',NULL),(4,'Objective','','slug','obj-4',NULL),(4,'Objective','','title','obj-4',NULL),(4,'OrgGroup','','description','test',NULL),(4,'OrgGroup','','notes','this is a note',NULL),(4,'OrgGroup','','slug','org-4',NULL),(4,'OrgGroup','','title','org-4',NULL),(4,'Person','','company','google',NULL),(4,'Person','','email','user10@example.com',NULL),(4,'Person','','name','user 10',NULL),(4,'Product','','description','test',NULL),(4,'Product','','notes','this is a note',NULL),(4,'Product','','slug','prod-4',NULL),(4,'Product','','title','prod-4',NULL),(4,'Program','','description','test',7),(4,'Program','','notes','this is a note',7),(4,'Program','','slug','prog-4',7),(4,'Program','','title','program 4',7),(4,'Project','','description','test',NULL),(4,'Project','','notes','this is a note',NULL),(4,'Project','','slug','proj-4',NULL),(4,'Project','','title','proj-4',NULL),(4,'Risk','','description','test',NULL),(4,'Risk','','notes','this is a note',NULL),(4,'Risk','','slug','ra-4',NULL),(4,'Risk','','title','ra-4',NULL),(4,'Section','','description','test',NULL),(4,'Section','','notes','this is a note',NULL),(4,'Section','','slug','sec-4',NULL),(4,'Section','','title','sec-4',NULL),(4,'System','','description','test',NULL),(4,'System','','notes','this is a note',NULL),(4,'System','','slug','sys-4',NULL),(4,'System','','title','sys-4',NULL),(4,'TaskGroup','','description','test',27),(4,'TaskGroup','','slug','tg-4',27),(4,'TaskGroup','','title','tg-4',27),(4,'TaskGroupTask','','description','test',27),(4,'TaskGroupTask','','slug','task-4',27),(4,'TaskGroupTask','','title','Quarterly',27),(4,'Vendor','','description','test',NULL),(4,'Vendor','','notes','this is a note',NULL),(4,'Vendor','','slug','ven-4',NULL),(4,'Vendor','','title','ven-4',NULL),(4,'Workflow','','description','test',27),(4,'Workflow','','slug','wf-4',27),(4,'Workflow','','title','wf-4',27),(5,'AccessGroup','','description','test',NULL),(5,'AccessGroup','','notes','this is a note',NULL),(5,'AccessGroup','','slug','ag-5',NULL),(5,'AccessGroup','','title','ag-5',NULL),(5,'Assessment','','description','test',NULL),(5,'Assessment','','notes','this is a note',NULL),(5,'Assessment','','slug','ca-5',NULL),(5,'Assessment','','test_plan','plan',NULL),(5,'Assessment','','title','ca-5',NULL),(5,'Audit','','description','test',18),(5,'Audit','','notes',NULL,18),(5,'Audit','','slug','Aud-5',18),(5,'Audit','','title','Aud-5',18),(5,'Clause','','description','test',NULL),(5,'Clause','','notes','this is a note',NULL),(5,'Clause','','slug','cl-5',NULL),(5,'Clause','','title','cl-5',NULL),(5,'Contract','','description','test',NULL),(5,'Contract','','notes','this is a note',NULL),(5,'Contract','','slug','ctr-5',NULL),(5,'Contract','','title','ctr-5',NULL),(5,'Control','','description','test',NULL),(5,'Control','','notes','this is a note',NULL),(5,'Control','','slug','control-5',NULL),(5,'Control','','test_plan','plan',NULL),(5,'Control','','title','control-5',NULL),(5,'CycleTaskGroupObjectTask','','description','test',25),(5,'CycleTaskGroupObjectTask','','slug','CYCLETASK-5',25),(5,'CycleTaskGroupObjectTask','','title','Weekly',25),(5,'DataAsset','','description','test',NULL),(5,'DataAsset','','notes','this is a note',NULL),(5,'DataAsset','','slug','da-5',NULL),(5,'DataAsset','','title','da-5',NULL),(5,'Facility','','description','test',NULL),(5,'Facility','','notes','this is a note',NULL),(5,'Facility','','slug','fac-5',NULL),(5,'Facility','','title','fac-5',NULL),(5,'Issue','','description','test',NULL),(5,'Issue','','notes','this is a note',NULL),(5,'Issue','','slug','iss-5',NULL),(5,'Issue','','test_plan','plan',NULL),(5,'Issue','','title','issue 5',NULL),(5,'Market','','description','test',NULL),(5,'Market','','notes','this is a note',NULL),(5,'Market','','slug','mkt-5',NULL),(5,'Market','','title','mkt-5',NULL),(5,'Objective','','description','test',NULL),(5,'Objective','','notes','this is a note',NULL),(5,'Objective','','slug','obj-5',NULL),(5,'Objective','','title','obj-5',NULL),(5,'OrgGroup','','description','test',NULL),(5,'OrgGroup','','notes','this is a note',NULL),(5,'OrgGroup','','slug','org-5',NULL),(5,'OrgGroup','','title','org-5',NULL),(5,'Person','','company','google',NULL),(5,'Person','','email','user11@example.com',NULL),(5,'Person','','name','user 11',NULL),(5,'Product','','description','test',NULL),(5,'Product','','notes','this is a note',NULL),(5,'Product','','slug','prod-5',NULL),(5,'Product','','title','prod-5',NULL),(5,'Program','','description','test',8),(5,'Program','','notes','this is a note',8),(5,'Program','','slug','prog-5',8),(5,'Program','','title','program 5',8),(5,'Project','','description','test',NULL),(5,'Project','','notes','this is a note',NULL),(5,'Project','','slug','proj-5',NULL),(5,'Project','','title','proj-5',NULL),(5,'Risk','','description','test',NULL),(5,'Risk','','notes','this is a note',NULL),(5,'Risk','','slug','ra-5',NULL),(5,'Risk','','title','ra-5',NULL),(5,'Section','','description','test',NULL),(5,'Section','','notes','this is a note',NULL),(5,'Section','','slug','sec-5',NULL),(5,'Section','','title','sec-5',NULL),(5,'System','','description','test',NULL),(5,'System','','notes','this is a note',NULL),(5,'System','','slug','sys-5',NULL),(5,'System','','title','sys-5',NULL),(5,'TaskGroup','','description','test',28),(5,'TaskGroup','','slug','tg-5',28),(5,'TaskGroup','','title','tg-5',28),(5,'TaskGroupTask','','description',NULL,28),(5,'TaskGroupTask','','slug','task-5',28),(5,'TaskGroupTask','','title','Annually',28),(5,'Vendor','','description','test',NULL),(5,'Vendor','','notes','this is a note',NULL),(5,'Vendor','','slug','ven-5',NULL),(5,'Vendor','','title','ven-5',NULL),(5,'Workflow','','description','test',28),(5,'Workflow','','slug','wf-5',28),(5,'Workflow','','title','wf-5',28),(6,'AccessGroup','','description','test',NULL),(6,'AccessGroup','','notes','this is a note',NULL),(6,'AccessGroup','','slug','ag-6',NULL),(6,'AccessGroup','','title','ag-6',NULL),(6,'Assessment','','description','test',NULL),(6,'Assessment','','notes','this is a note',NULL),(6,'Assessment','','slug','ca-6',NULL),(6,'Assessment','','test_plan','plan',NULL),(6,'Assessment','','title','ca-6',NULL),(6,'Audit','','description','test',19),(6,'Audit','','notes',NULL,19),(6,'Audit','','slug','Aud-6',19),(6,'Audit','','title','Aud-6',19),(6,'Clause','','description','test',NULL),(6,'Clause','','notes','this is a note',NULL),(6,'Clause','','slug','cl-6',NULL),(6,'Clause','','title','cl-6',NULL),(6,'Contract','','description','test',NULL),(6,'Contract','','notes','this is a note',NULL),(6,'Contract','','slug','ctr-6',NULL),(6,'Contract','','title','ctr-6',NULL),(6,'Control','','description','test',NULL),(6,'Control','','notes','this is a note',NULL),(6,'Control','','slug','control-6',NULL),(6,'Control','','test_plan','plan',NULL),(6,'Control','','title','control-6',NULL),(6,'CycleTaskGroupObjectTask','','description',NULL,25),(6,'CycleTaskGroupObjectTask','','slug','CYCLETASK-6',25),(6,'CycleTaskGroupObjectTask','','title','Weekly',25),(6,'DataAsset','','description','test',NULL),(6,'DataAsset','','notes','this is a note',NULL),(6,'DataAsset','','slug','da-6',NULL),(6,'DataAsset','','title','da-6',NULL),(6,'Facility','','description','test',NULL),(6,'Facility','','notes','this is a note',NULL),(6,'Facility','','slug','fac-6',NULL),(6,'Facility','','title','fac-6',NULL),(6,'Issue','','description','test',NULL),(6,'Issue','','notes','this is a note',NULL),(6,'Issue','','slug','iss-6',NULL),(6,'Issue','','test_plan','plan',NULL),(6,'Issue','','title','issue 6',NULL),(6,'Market','','description','test',NULL),(6,'Market','','notes','this is a note',NULL),(6,'Market','','slug','mkt-6',NULL),(6,'Market','','title','mkt-6',NULL),(6,'Objective','','description','test',NULL),(6,'Objective','','notes','this is a note',NULL),(6,'Objective','','slug','obj-6',NULL),(6,'Objective','','title','obj-6',NULL),(6,'OrgGroup','','description','test',NULL),(6,'OrgGroup','','notes','this is a note',NULL),(6,'OrgGroup','','slug','org-6',NULL),(6,'OrgGroup','','title','org-6',NULL),(6,'Person','','company','amazon',NULL),(6,'Person','','email','user12@example.com',NULL),(6,'Person','','name','user 12',NULL),(6,'Product','','description','test',NULL),(6,'Product','','notes','this is a note',NULL),(6,'Product','','slug','prod-6',NULL),(6,'Product','','title','prod-6',NULL),(6,'Program','','description','test',9),(6,'Program','','notes','this is a note',9),(6,'Program','','slug','prog-6',9),(6,'Program','','title','program 6',9),(6,'Project','','description','test',NULL),(6,'Project','','notes','this is a note',NULL),(6,'Project','','slug','proj-6',NULL),(6,'Project','','title','proj-6',NULL),(6,'Risk','','description','test',NULL),(6,'Risk','','notes','this is a note',NULL),(6,'Risk','','slug','ra-6',NULL),(6,'Risk','','title','ra-6',NULL),(6,'Section','','description','test',NULL),(6,'Section','','notes','this is a note',NULL),(6,'Section','','slug','sec-6',NULL),(6,'Section','','title','sec-6',NULL),(6,'System','','description','test',NULL),(6,'System','','notes','this is a note',NULL),(6,'System','','slug','sys-6',NULL),(6,'System','','title','sys-6',NULL),(6,'TaskGroup','','description','test',24),(6,'TaskGroup','','slug','tg-6',24),(6,'TaskGroup','','title','tg-6',24),(6,'TaskGroupTask','','description',NULL,24),(6,'TaskGroupTask','','slug','task-6',24),(6,'TaskGroupTask','','title','One time',24),(6,'Vendor','','description','test',NULL),(6,'Vendor','','notes','this is a note',NULL),(6,'Vendor','','slug','ven-6',NULL),(6,'Vendor','','title','ven-6',NULL),(6,'Workflow','','description','test',29),(6,'Workflow','','slug','wf-6',29),(6,'Workflow','','title','wf-6',29),(7,'AccessGroup','','description','test',NULL),(7,'AccessGroup','','notes','this is a note',NULL),(7,'AccessGroup','','slug','ag-7',NULL),(7,'AccessGroup','','title','ag-7',NULL),(7,'Assessment','','description','test',NULL),(7,'Assessment','','notes','this is a note',NULL),(7,'Assessment','','slug','ca-7',NULL),(7,'Assessment','','test_plan','plan',NULL),(7,'Assessment','','title','ca-7',NULL),(7,'Audit','','description','test',20),(7,'Audit','','notes',NULL,20),(7,'Audit','','slug','Aud-7',20),(7,'Audit','','title','Aud-7',20),(7,'Clause','','description','test',NULL),(7,'Clause','','notes','this is a note',NULL),(7,'Clause','','slug','cl-7',NULL),(7,'Clause','','title','cl-7',NULL),(7,'Contract','','description','test',NULL),(7,'Contract','','notes','this is a note',NULL),(7,'Contract','','slug','ctr-7',NULL),(7,'Contract','','title','ctr-7',NULL),(7,'Control','','description','test',NULL),(7,'Control','','notes','this is a note',NULL),(7,'Control','','slug','control-7',NULL),(7,'Control','','test_plan','plan',NULL),(7,'Control','','title','control-7',NULL),(7,'CycleTaskGroupObjectTask','','description','',25),(7,'CycleTaskGroupObjectTask','','slug','CYCLETASK-7',25),(7,'CycleTaskGroupObjectTask','','title','uoe',25),(7,'DataAsset','','description','test',NULL),(7,'DataAsset','','notes','this is a note',NULL),(7,'DataAsset','','slug','da-7',NULL),(7,'DataAsset','','title','da-7',NULL),(7,'Facility','','description','test',NULL),(7,'Facility','','notes','this is a note',NULL),(7,'Facility','','slug','fac-7',NULL),(7,'Facility','','title','fac-7',NULL),(7,'Issue','','description','test',NULL),(7,'Issue','','notes','this is a note',NULL),(7,'Issue','','slug','iss-7',NULL),(7,'Issue','','test_plan','plan',NULL),(7,'Issue','','title','issue 7',NULL),(7,'Market','','description','test',NULL),(7,'Market','','notes','this is a note',NULL),(7,'Market','','slug','mkt-7',NULL),(7,'Market','','title','mkt-7',NULL),(7,'Objective','','description','test',NULL),(7,'Objective','','notes','this is a note',NULL),(7,'Objective','','slug','obj-7',NULL),(7,'Objective','','title','obj-7',NULL),(7,'OrgGroup','','description','test',NULL),(7,'OrgGroup','','notes','this is a note',NULL),(7,'OrgGroup','','slug','org-7',NULL),(7,'OrgGroup','','title','org-7',NULL),(7,'Person','','company','facebook',NULL),(7,'Person','','email','user13@example.com',NULL),(7,'Person','','name','user 13',NULL),(7,'Product','','description','test',NULL),(7,'Product','','notes','this is a note',NULL),(7,'Product','','slug','prod-7',NULL),(7,'Product','','title','prod-7',NULL),(7,'Program','','description','test',10),(7,'Program','','notes','this is a note',10),(7,'Program','','slug','prog-7',10),(7,'Program','','title','program 7',10),(7,'Project','','description','test',NULL),(7,'Project','','notes','this is a note',NULL),(7,'Project','','slug','proj-7',NULL),(7,'Project','','title','proj-7',NULL),(7,'Risk','','description','test',NULL),(7,'Risk','','notes','this is a note',NULL),(7,'Risk','','slug','rra-7',NULL),(7,'Risk','','title','rra-7',NULL),(7,'Section','','description','test',NULL),(7,'Section','','notes','this is a note',NULL),(7,'Section','','slug','sec-7',NULL),(7,'Section','','title','sec-7',NULL),(7,'System','','description','test',NULL),(7,'System','','notes','this is a note',NULL),(7,'System','','slug','sys-7',NULL),(7,'System','','title','sys-7',NULL),(7,'TaskGroup','','description','test',25),(7,'TaskGroup','','slug','tg-7',25),(7,'TaskGroup','','title','tg-7',25),(7,'TaskGroupTask','','description','test',24),(7,'TaskGroupTask','','slug','task-7',24),(7,'TaskGroupTask','','title','One time',24),(7,'Vendor','','description','test',NULL),(7,'Vendor','','notes','this is a note',NULL),(7,'Vendor','','slug','ven-7',NULL),(7,'Vendor','','title','ven-7',NULL),(7,'Workflow','','description','test',30),(7,'Workflow','','slug','wf-7',30),(7,'Workflow','','title','wf-7',30),(8,'AccessGroup','','description','test',NULL),(8,'AccessGroup','','notes','this is a note',NULL),(8,'AccessGroup','','slug','ag-8',NULL),(8,'AccessGroup','','title','ag-8',NULL),(8,'Assessment','','description','test',NULL),(8,'Assessment','','notes','this is a note',NULL),(8,'Assessment','','slug','ca-8',NULL),(8,'Assessment','','test_plan','plan',NULL),(8,'Assessment','','title','ca-8',NULL),(8,'Audit','','description','test',21),(8,'Audit','','notes',NULL,21),(8,'Audit','','slug','Aud-8',21),(8,'Audit','','title','Aud-8',21),(8,'Clause','','description','test',NULL),(8,'Clause','','notes','this is a note',NULL),(8,'Clause','','slug','cl-8',NULL),(8,'Clause','','title','cl-8',NULL),(8,'Contract','','description','test',NULL),(8,'Contract','','notes','this is a note',NULL),(8,'Contract','','slug','ctr-8',NULL),(8,'Contract','','title','ctr-8',NULL),(8,'Control','','description','test',NULL),(8,'Control','','notes','this is a note',NULL),(8,'Control','','slug','control-8',NULL),(8,'Control','','test_plan','plan',NULL),(8,'Control','','title','control 8',NULL),(8,'CycleTaskGroupObjectTask','','description','',25),(8,'CycleTaskGroupObjectTask','','slug','CYCLETASK-8',25),(8,'CycleTaskGroupObjectTask','','title','uoeauaouoa',25),(8,'DataAsset','','description','test',NULL),(8,'DataAsset','','notes','this is a note',NULL),(8,'DataAsset','','slug','da-8',NULL),(8,'DataAsset','','title','da-8',NULL),(8,'Facility','','description','test',NULL),(8,'Facility','','notes','this is a note',NULL),(8,'Facility','','slug','fac-8',NULL),(8,'Facility','','title','fac-8',NULL),(8,'Issue','','description','test',NULL),(8,'Issue','','notes','this is a note',NULL),(8,'Issue','','slug','iss-8',NULL),(8,'Issue','','test_plan','plan',NULL),(8,'Issue','','title','issue 8',NULL),(8,'Market','','description','test',NULL),(8,'Market','','notes','this is a note',NULL),(8,'Market','','slug','mkt-8',NULL),(8,'Market','','title','mkt-8',NULL),(8,'Objective','','description','test',NULL),(8,'Objective','','notes','this is a note',NULL),(8,'Objective','','slug','obj-8',NULL),(8,'Objective','','title','obj-8',NULL),(8,'OrgGroup','','description','test',NULL),(8,'OrgGroup','','notes','this is a note',NULL),(8,'OrgGroup','','slug','org-8',NULL),(8,'OrgGroup','','title','org-8',NULL),(8,'Person','','company','linkedin',NULL),(8,'Person','','email','user14@example.com',NULL),(8,'Person','','name','user 14',NULL),(8,'Product','','description','test',NULL),(8,'Product','','notes','this is a note',NULL),(8,'Product','','slug','prod-8',NULL),(8,'Product','','title','prod-8',NULL),(8,'Program','','description','test',11),(8,'Program','','notes','this is a note',11),(8,'Program','','slug','prog-8',11),(8,'Program','','title','program 8',11),(8,'Project','','description','test',NULL),(8,'Project','','notes','this is a note',NULL),(8,'Project','','slug','proj-8',NULL),(8,'Project','','title','proj-8',NULL),(8,'Risk','','description','test',NULL),(8,'Risk','','notes','this is a note',NULL),(8,'Risk','','slug','ra-8',NULL),(8,'Risk','','title','ra-8',NULL),(8,'Section','','description','test',NULL),(8,'Section','','notes','this is a note',NULL),(8,'Section','','slug','sec-8',NULL),(8,'Section','','title','sec-8',NULL),(8,'System','','description','test',NULL),(8,'System','','notes','this is a note',NULL),(8,'System','','slug','sys-8',NULL),(8,'System','','title','sys-8',NULL),(8,'TaskGroup','','description','test',26),(8,'TaskGroup','','slug','tg-8',26),(8,'TaskGroup','','title','tg-8',26),(8,'TaskGroupTask','','description',NULL,25),(8,'TaskGroupTask','','slug','task-8',25),(8,'TaskGroupTask','','title','Weekly',25),(8,'Vendor','','description','test',NULL),(8,'Vendor','','notes','this is a note',NULL),(8,'Vendor','','slug','ven-8',NULL),(8,'Vendor','','title','ven-8',NULL),(8,'Workflow','','description','test',31),(8,'Workflow','','slug','wf-8',31),(8,'Workflow','','title','wf-8',31),(9,'AccessGroup','','description','test',NULL),(9,'AccessGroup','','notes','this is a note',NULL),(9,'AccessGroup','','slug','ag-9',NULL),(9,'AccessGroup','','title','ag-9',NULL),(9,'Assessment','','description','test',NULL),(9,'Assessment','','notes','this is a note',NULL),(9,'Assessment','','slug','ca-9',NULL),(9,'Assessment','','test_plan','plan',NULL),(9,'Assessment','','title','ca-9',NULL),(9,'Audit','','description','test',22),(9,'Audit','','notes',NULL,22),(9,'Audit','','slug','Aud-9',22),(9,'Audit','','title','Aud-9',22),(9,'Clause','','description','test',NULL),(9,'Clause','','notes','this is a note',NULL),(9,'Clause','','slug','cl-9',NULL),(9,'Clause','','title','cl-9',NULL),(9,'Contract','','description','test',NULL),(9,'Contract','','notes','this is a note',NULL),(9,'Contract','','slug','ctr-9',NULL),(9,'Contract','','title','ctr-9',NULL),(9,'Control','','description','test',NULL),(9,'Control','','notes','this is a note',NULL),(9,'Control','','slug','control-9',NULL),(9,'Control','','test_plan','plan',NULL),(9,'Control','','title','control-9',NULL),(9,'DataAsset','','description','test',NULL),(9,'DataAsset','','notes','this is a note',NULL),(9,'DataAsset','','slug','da-9',NULL),(9,'DataAsset','','title','da-9',NULL),(9,'Facility','','description','test',NULL),(9,'Facility','','notes','this is a note',NULL),(9,'Facility','','slug','fac-9',NULL),(9,'Facility','','title','fac-9',NULL),(9,'Issue','','description','test',NULL),(9,'Issue','','notes','this is a note',NULL),(9,'Issue','','slug','iss-9',NULL),(9,'Issue','','test_plan','plan',NULL),(9,'Issue','','title','issue 9',NULL),(9,'Market','','description','test',NULL),(9,'Market','','notes','this is a note',NULL),(9,'Market','','slug','mkt-9',NULL),(9,'Market','','title','mkt-9',NULL),(9,'Objective','','description','test',NULL),(9,'Objective','','notes','this is a note',NULL),(9,'Objective','','slug','obj-9',NULL),(9,'Objective','','title','obj-9',NULL),(9,'OrgGroup','','description','test',NULL),(9,'OrgGroup','','notes','this is a note',NULL),(9,'OrgGroup','','slug','org-9',NULL),(9,'OrgGroup','','title','org-9',NULL),(9,'Person','','company','twitter',NULL),(9,'Person','','email','user15@example.com',NULL),(9,'Person','','name','user 15',NULL),(9,'Product','','description','test',NULL),(9,'Product','','notes','this is a note',NULL),(9,'Product','','slug','prod-9',NULL),(9,'Product','','title','prod-9',NULL),(9,'Program','','description','test',12),(9,'Program','','notes','this is a note',12),(9,'Program','','slug','prog-9',12),(9,'Program','','title','program 9',12),(9,'Project','','description','test',NULL),(9,'Project','','notes','this is a note',NULL),(9,'Project','','slug','proj-9',NULL),(9,'Project','','title','proj-9',NULL),(9,'Risk','','description','test',NULL),(9,'Risk','','notes','this is a note',NULL),(9,'Risk','','slug','ra-9',NULL),(9,'Risk','','title','ra-9',NULL),(9,'Section','','description','test',NULL),(9,'Section','','notes','this is a note',NULL),(9,'Section','','slug','sec-9',NULL),(9,'Section','','title','sec-9',NULL),(9,'System','','description','test',NULL),(9,'System','','notes','this is a note',NULL),(9,'System','','slug','sys-9',NULL),(9,'System','','title','sys-9',NULL),(9,'TaskGroup','','description','test',27),(9,'TaskGroup','','slug','tg-9',27),(9,'TaskGroup','','title','tg-9',27),(9,'TaskGroupTask','','description',NULL,26),(9,'TaskGroupTask','','slug','task-9',26),(9,'TaskGroupTask','','title','Monthly',26),(9,'Vendor','','description','test',NULL),(9,'Vendor','','notes','this is a note',NULL),(9,'Vendor','','slug','ven-9',NULL),(9,'Vendor','','title','ven-9',NULL),(9,'Workflow','','description','test',32),(9,'Workflow','','slug','wf-9',32),(9,'Workflow','','title','wf-9',32),(10,'AccessGroup','','description','test',NULL),(10,'AccessGroup','','notes','this is a note',NULL),(10,'AccessGroup','','slug','ag-10',NULL),(10,'AccessGroup','','title','ag-10',NULL),(10,'Assessment','','description','test',NULL),(10,'Assessment','','notes','this is a note',NULL),(10,'Assessment','','slug','ca-10',NULL),(10,'Assessment','','test_plan','plan',NULL),(10,'Assessment','','title','ca-10',NULL),(10,'Audit','','description','test',23),(10,'Audit','','notes',NULL,23),(10,'Audit','','slug','Aud-10',23),(10,'Audit','','title','Aud-10',23),(10,'Clause','','description','test',NULL),(10,'Clause','','notes','this is a note',NULL),(10,'Clause','','slug','cl-10',NULL),(10,'Clause','','title','cl-10',NULL),(10,'Contract','','description','test',NULL),(10,'Contract','','notes','this is a note',NULL),(10,'Contract','','slug','ctr-10',NULL),(10,'Contract','','title','ctr-10',NULL),(10,'Control','','description','test',NULL),(10,'Control','','notes','this is a note',NULL),(10,'Control','','slug','control-10',NULL),(10,'Control','','test_plan','plan',NULL),(10,'Control','','title','control-10',NULL),(10,'DataAsset','','description','test',NULL),(10,'DataAsset','','notes','this is a note',NULL),(10,'DataAsset','','slug','da-10',NULL),(10,'DataAsset','','title','da-10',NULL),(10,'Facility','','description','test',NULL),(10,'Facility','','notes','this is a note',NULL),(10,'Facility','','slug','fac-10',NULL),(10,'Facility','','title','fac-10',NULL),(10,'Issue','','description','test',NULL),(10,'Issue','','notes','this is a note',NULL),(10,'Issue','','slug','iss-10',NULL),(10,'Issue','','test_plan','plan',NULL),(10,'Issue','','title','issue 10',NULL),(10,'Market','','description','test',NULL),(10,'Market','','notes','this is a note',NULL),(10,'Market','','slug','mkt-10',NULL),(10,'Market','','title','mkt-10',NULL),(10,'Objective','','description','test',NULL),(10,'Objective','','notes','this is a note',NULL),(10,'Objective','','slug','obj-10',NULL),(10,'Objective','','title','obj-10',NULL),(10,'OrgGroup','','description','test',NULL),(10,'OrgGroup','','notes','this is a note',NULL),(10,'OrgGroup','','slug','org-10',NULL),(10,'OrgGroup','','title','org-10',NULL),(10,'Person','','company','google',NULL),(10,'Person','','email','user16@example.com',NULL),(10,'Person','','name','user 16',NULL),(10,'Product','','description','test',NULL),(10,'Product','','notes','this is a note',NULL),(10,'Product','','slug','prod-10',NULL),(10,'Product','','title','prod-10',NULL),(10,'Program','','description','test',13),(10,'Program','','notes','this is a note',13),(10,'Program','','slug','prog-10',13),(10,'Program','','title','program 10',13),(10,'Project','','description','test',NULL),(10,'Project','','notes','this is a note',NULL),(10,'Project','','slug','proj-10',NULL),(10,'Project','','title','proj-10',NULL),(10,'Risk','','description','test',NULL),(10,'Risk','','notes','this is a note',NULL),(10,'Risk','','slug','ra-10',NULL),(10,'Risk','','title','ra-10',NULL),(10,'Section','','description','test',NULL),(10,'Section','','notes','this is a note',NULL),(10,'Section','','slug','sec-10',NULL),(10,'Section','','title','sec-10',NULL),(10,'System','','description','test',NULL),(10,'System','','notes','this is a note',NULL),(10,'System','','slug','sys-10',NULL),(10,'System','','title','sys-10',NULL),(10,'TaskGroup','','description','test',28),(10,'TaskGroup','','slug','tg-10',28),(10,'TaskGroup','','title','tg-10',28),(10,'TaskGroupTask','','description','test',27),(10,'TaskGroupTask','','slug','task-10',27),(10,'TaskGroupTask','','title','Quarterly',27),(10,'Vendor','','description','test',NULL),(10,'Vendor','','notes','this is a note',NULL),(10,'Vendor','','slug','ven-10',NULL),(10,'Vendor','','title','ven-10',NULL),(10,'Workflow','','description','test',33),(10,'Workflow','','slug','wf-10',33),(10,'Workflow','','title','wf-10',33),(11,'Person','','company','amazon',NULL),(11,'Person','','email','user17@example.com',NULL),(11,'Person','','name','user 17',NULL),(11,'Policy','','description','test',NULL),(11,'Policy','','notes','this is a note',NULL),(11,'Policy','','slug','p1',NULL),(11,'Policy','','title','policy 1',NULL),(11,'Process','','description','test',NULL),(11,'Process','','notes','this is a note',NULL),(11,'Process','','slug','proc-1',NULL),(11,'Process','','title','proc-1',NULL),(11,'TaskGroupTask','','description','',25),(11,'TaskGroupTask','','slug','TASK-11',25),(11,'TaskGroupTask','','title','uoe',25),(12,'Person','','company','facebook',NULL),(12,'Person','','email','user18@example.com',NULL),(12,'Person','','name','user 18',NULL),(12,'Policy','','description','test',NULL),(12,'Policy','','notes','this is a note',NULL),(12,'Policy','','slug','p2',NULL),(12,'Policy','','title','policy 2',NULL),(12,'Process','','description','test',NULL),(12,'Process','','notes','this is a note',NULL),(12,'Process','','slug','proc-2',NULL),(12,'Process','','title','proc-2',NULL),(12,'TaskGroupTask','','description','',25),(12,'TaskGroupTask','','slug','TASK-12',25),(12,'TaskGroupTask','','title','uoeauaouoa',25),(13,'Person','','company','linkedin',NULL),(13,'Person','','email','user19@example.com',NULL),(13,'Person','','name','user 19',NULL),(13,'Policy','','description','test',NULL),(13,'Policy','','notes','this is a note',NULL),(13,'Policy','','slug','p3',NULL),(13,'Policy','','title','policy 3',NULL),(13,'Process','','description','test',NULL),(13,'Process','','notes','this is a note',NULL),(13,'Process','','slug','proc-3',NULL),(13,'Process','','title','proc-3',NULL),(14,'Person','','company','twitter',NULL),(14,'Person','','email','user20@example.com',NULL),(14,'Person','','name','user 20',NULL),(14,'Policy','','description','test',NULL),(14,'Policy','','notes','this is a note',NULL),(14,'Policy','','slug','p4',NULL),(14,'Policy','','title','policy 4',NULL),(14,'Process','','description','test',NULL),(14,'Process','','notes','this is a note',NULL),(14,'Process','','slug','proc-4',NULL),(14,'Process','','title','proc-4',NULL),(15,'Person','','company','google',NULL),(15,'Person','','email','user1@ggrc.com',NULL),(15,'Person','','name','Mister User 1',NULL),(15,'Policy','','description','test',NULL),(15,'Policy','','notes','this is a note',NULL),(15,'Policy','','slug','p5',NULL),(15,'Policy','','title','policy 5',NULL),(15,'Process','','description','test',NULL),(15,'Process','','notes','this is a note',NULL),(15,'Process','','slug','proc-5',NULL),(15,'Process','','title','proc-5',NULL),(16,'Person','','company','google',NULL),(16,'Person','','email','user2@ggrc.com',NULL),(16,'Person','','name','Mister User 2',NULL),(16,'Policy','','description','test',NULL),(16,'Policy','','notes','this is a note',NULL),(16,'Policy','','slug','p6',NULL),(16,'Policy','','title','policy 6',NULL),(16,'Process','','description','test',NULL),(16,'Process','','notes','this is a note',NULL),(16,'Process','','slug','proc-6',NULL),(16,'Process','','title','proc-6',NULL),(17,'Person','','company','google',NULL),(17,'Person','','email','user10@ggrc.com',NULL),(17,'Person','','name','Mister User 10',NULL),(17,'Policy','','description','test',NULL),(17,'Policy','','notes','this is a note',NULL),(17,'Policy','','slug','p7',NULL),(17,'Policy','','title','policy 7',NULL),(17,'Process','','description','test',NULL),(17,'Process','','notes','this is a note',NULL),(17,'Process','','slug','proc-7',NULL),(17,'Process','','title','proc-7',NULL),(18,'Person','','company','google',NULL),(18,'Person','','email','user11@ggrc.com',NULL),(18,'Person','','name','Mister User 11',NULL),(18,'Policy','','description','test',NULL),(18,'Policy','','notes','this is a note',NULL),(18,'Policy','','slug','p8',NULL),(18,'Policy','','title','policy 8',NULL),(18,'Process','','description','test',NULL),(18,'Process','','notes','this is a note',NULL),(18,'Process','','slug','proc-8',NULL),(18,'Process','','title','proc-8',NULL),(19,'Person','','company','google',NULL),(19,'Person','','email','user12@ggrc.com',NULL),(19,'Person','','name','Mister User 12',NULL),(19,'Policy','','description','test',NULL),(19,'Policy','','notes','this is a note',NULL),(19,'Policy','','slug','p9',NULL),(19,'Policy','','title','policy 9',NULL),(19,'Process','','description','test',NULL),(19,'Process','','notes','this is a note',NULL),(19,'Process','','slug','proc-9',NULL),(19,'Process','','title','proc-9',NULL),(20,'Person','','company','google',NULL),(20,'Person','','email','user13@ggrc.com',NULL),(20,'Person','','name','Mister User 13',NULL),(20,'Policy','','description','test',NULL),(20,'Policy','','notes','this is a note',NULL),(20,'Policy','','slug','p10',NULL),(20,'Policy','','title','policy 10',NULL),(20,'Process','','description','test',NULL),(20,'Process','','notes','this is a note',NULL),(20,'Process','','slug','proc-10',NULL),(20,'Process','','title','proc-10',NULL),(21,'Person','','company','google',NULL),(21,'Person','','email','user14@ggrc.com',NULL),(21,'Person','','name','Mister User 14',NULL),(21,'Regulation','','description','test',NULL),(21,'Regulation','','notes','this is a note',NULL),(21,'Regulation','','slug','reg-1',NULL),(21,'Regulation','','title','reg 1',NULL),(22,'Person','','company','google',NULL),(22,'Person','','email','user15@ggrc.com',NULL),(22,'Person','','name','Mister User 15',NULL),(22,'Regulation','','description','test',NULL),(22,'Regulation','','notes','this is a note',NULL),(22,'Regulation','','slug','reg-2',NULL),(22,'Regulation','','title','reg 2',NULL),(23,'Person','','company','google',NULL),(23,'Person','','email','user16@ggrc.com',NULL),(23,'Person','','name','Mister User 16',NULL),(23,'Regulation','','description','test',NULL),(23,'Regulation','','notes','this is a note',NULL),(23,'Regulation','','slug','reg-3',NULL),(23,'Regulation','','title','reg 3',NULL),(24,'Person','','company','google',NULL),(24,'Person','','email','user17@ggrc.com',NULL),(24,'Person','','name','Mister User 17',NULL),(24,'Regulation','','description','test',NULL),(24,'Regulation','','notes','this is a note',NULL),(24,'Regulation','','slug','reg-4',NULL),(24,'Regulation','','title','reg 4',NULL),(25,'Person','','company','google',NULL),(25,'Person','','email','user18@ggrc.com',NULL),(25,'Person','','name','Mister User 18',NULL),(25,'Regulation','','description','test',NULL),(25,'Regulation','','notes','this is a note',NULL),(25,'Regulation','','slug','reg-5',NULL),(25,'Regulation','','title','reg 5',NULL),(26,'Person','','company','google',NULL),(26,'Person','','email','user19@ggrc.com',NULL),(26,'Person','','name','Mister User 19',NULL),(26,'Regulation','','description','test',NULL),(26,'Regulation','','notes','this is a note',NULL),(26,'Regulation','','slug','reg-6',NULL),(26,'Regulation','','title','reg 6',NULL),(27,'Person','','company','google',NULL),(27,'Person','','email','user20@ggrc.com',NULL),(27,'Person','','name','Mister User 20',NULL),(27,'Regulation','','description','test',NULL),(27,'Regulation','','notes','this is a note',NULL),(27,'Regulation','','slug','reg-7',NULL),(27,'Regulation','','title','reg 7',NULL),(28,'Person','','company','google',NULL),(28,'Person','','email','user21@ggrc.com',NULL),(28,'Person','','name','Mister User 21',NULL),(28,'Regulation','','description','test',NULL),(28,'Regulation','','notes','this is a note',NULL),(28,'Regulation','','slug','reg-8',NULL),(28,'Regulation','','title','reg 8',NULL),(29,'Person','','company','google',NULL),(29,'Person','','email','user22@ggrc.com',NULL),(29,'Person','','name','Mister User 22',NULL),(29,'Regulation','','description','test',NULL),(29,'Regulation','','notes','this is a note',NULL),(29,'Regulation','','slug','reg-9',NULL),(29,'Regulation','','title','reg 9',NULL),(30,'Regulation','','description','test',NULL),(30,'Regulation','','notes','this is a note',NULL),(30,'Regulation','','slug','reg-10',NULL),(30,'Regulation','','title','reg 10',NULL),(31,'Standard','','description','test',NULL),(31,'Standard','','notes','this is a note',NULL),(31,'Standard','','slug','std-1',NULL),(31,'Standard','','title','std 1',NULL),(32,'Standard','','description','test',NULL),(32,'Standard','','notes','this is a note',NULL),(32,'Standard','','slug','std-2',NULL),(32,'Standard','','title','std 2',NULL),(33,'Standard','','description','test',NULL),(33,'Standard','','notes','this is a note',NULL),(33,'Standard','','slug','std-3',NULL),(33,'Standard','','title','std 3',NULL),(34,'Standard','','description','test',NULL),(34,'Standard','','notes','this is a note',NULL),(34,'Standard','','slug','std-4',NULL),(34,'Standard','','title','std 4',NULL),(35,'Standard','','description','test',NULL),(35,'Standard','','notes','this is a note',NULL),(35,'Standard','','slug','std-5',NULL),(35,'Standard','','title','std 5',NULL),(36,'Standard','','description','test',NULL),(36,'Standard','','notes','this is a note',NULL),(36,'Standard','','slug','std-6',NULL),(36,'Standard','','title','std 6',NULL),(37,'Standard','','description','test',NULL),(37,'Standard','','notes','this is a note',NULL),(37,'Standard','','slug','std-7',NULL),(37,'Standard','','title','std 7',NULL),(38,'Standard','','description','test',NULL),(38,'Standard','','notes','this is a note',NULL),(38,'Standard','','slug','std-8',NULL),(38,'Standard','','title','std 8',NULL),(39,'Standard','','description','test',NULL),(39,'Standard','','notes','this is a note',NULL),(39,'Standard','','slug','std-9',NULL),(39,'Standard','','title','std 9',NULL),(40,'Standard','','description','test',NULL),(40,'Standard','','notes','this is a note',NULL),(40,'Standard','','slug','std-10',NULL),(40,'Standard','','title','std 10',NULL),(41,'Standard','','description','test',NULL),(41,'Standard','','notes','this is a note',NULL),(41,'Standard','','slug','std-11',NULL),(41,'Standard','','title','std 11',NULL);
  1131. /*!40000 ALTER TABLE `fulltext_record_properties` ENABLE KEYS */;
  1132. UNLOCK TABLES;
  1133.  
  1134. --
  1135. -- Table structure for table `ggrc_alembic_version`
  1136. --
  1137.  
  1138. DROP TABLE IF EXISTS `ggrc_alembic_version`;
  1139. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1140. /*!40101 SET character_set_client = utf8 */;
  1141. CREATE TABLE `ggrc_alembic_version` (
  1142. `version_num` varchar(32) NOT NULL
  1143. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1144. /*!40101 SET character_set_client = @saved_cs_client */;
  1145.  
  1146. --
  1147. -- Dumping data for table `ggrc_alembic_version`
  1148. --
  1149.  
  1150. LOCK TABLES `ggrc_alembic_version` WRITE;
  1151. /*!40000 ALTER TABLE `ggrc_alembic_version` DISABLE KEYS */;
  1152. INSERT INTO `ggrc_alembic_version` VALUES ('2a5a39600741'),('2a5a39600741');
  1153. /*!40000 ALTER TABLE `ggrc_alembic_version` ENABLE KEYS */;
  1154. UNLOCK TABLES;
  1155.  
  1156. --
  1157. -- Table structure for table `ggrc_basic_permissions_alembic_version`
  1158. --
  1159.  
  1160. DROP TABLE IF EXISTS `ggrc_basic_permissions_alembic_version`;
  1161. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1162. /*!40101 SET character_set_client = utf8 */;
  1163. CREATE TABLE `ggrc_basic_permissions_alembic_version` (
  1164. `version_num` varchar(32) NOT NULL
  1165. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1166. /*!40101 SET character_set_client = @saved_cs_client */;
  1167.  
  1168. --
  1169. -- Dumping data for table `ggrc_basic_permissions_alembic_version`
  1170. --
  1171.  
  1172. LOCK TABLES `ggrc_basic_permissions_alembic_version` WRITE;
  1173. /*!40000 ALTER TABLE `ggrc_basic_permissions_alembic_version` DISABLE KEYS */;
  1174. INSERT INTO `ggrc_basic_permissions_alembic_version` VALUES ('4e105fc39b25');
  1175. /*!40000 ALTER TABLE `ggrc_basic_permissions_alembic_version` ENABLE KEYS */;
  1176. UNLOCK TABLES;
  1177.  
  1178. --
  1179. -- Table structure for table `ggrc_gdrive_integration_alembic_version`
  1180. --
  1181.  
  1182. DROP TABLE IF EXISTS `ggrc_gdrive_integration_alembic_version`;
  1183. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1184. /*!40101 SET character_set_client = utf8 */;
  1185. CREATE TABLE `ggrc_gdrive_integration_alembic_version` (
  1186. `version_num` varchar(32) NOT NULL
  1187. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1188. /*!40101 SET character_set_client = @saved_cs_client */;
  1189.  
  1190. --
  1191. -- Dumping data for table `ggrc_gdrive_integration_alembic_version`
  1192. --
  1193.  
  1194. LOCK TABLES `ggrc_gdrive_integration_alembic_version` WRITE;
  1195. /*!40000 ALTER TABLE `ggrc_gdrive_integration_alembic_version` DISABLE KEYS */;
  1196. INSERT INTO `ggrc_gdrive_integration_alembic_version` VALUES ('395186a2d8');
  1197. /*!40000 ALTER TABLE `ggrc_gdrive_integration_alembic_version` ENABLE KEYS */;
  1198. UNLOCK TABLES;
  1199.  
  1200. --
  1201. -- Table structure for table `ggrc_risk_assessments_alembic_version`
  1202. --
  1203.  
  1204. DROP TABLE IF EXISTS `ggrc_risk_assessments_alembic_version`;
  1205. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1206. /*!40101 SET character_set_client = utf8 */;
  1207. CREATE TABLE `ggrc_risk_assessments_alembic_version` (
  1208. `version_num` varchar(32) NOT NULL
  1209. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1210. /*!40101 SET character_set_client = @saved_cs_client */;
  1211.  
  1212. --
  1213. -- Dumping data for table `ggrc_risk_assessments_alembic_version`
  1214. --
  1215.  
  1216. LOCK TABLES `ggrc_risk_assessments_alembic_version` WRITE;
  1217. /*!40000 ALTER TABLE `ggrc_risk_assessments_alembic_version` DISABLE KEYS */;
  1218. INSERT INTO `ggrc_risk_assessments_alembic_version` VALUES ('4d4b04a5b9c6');
  1219. /*!40000 ALTER TABLE `ggrc_risk_assessments_alembic_version` ENABLE KEYS */;
  1220. UNLOCK TABLES;
  1221.  
  1222. --
  1223. -- Table structure for table `ggrc_risks_alembic_version`
  1224. --
  1225.  
  1226. DROP TABLE IF EXISTS `ggrc_risks_alembic_version`;
  1227. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1228. /*!40101 SET character_set_client = utf8 */;
  1229. CREATE TABLE `ggrc_risks_alembic_version` (
  1230. `version_num` varchar(32) NOT NULL
  1231. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1232. /*!40101 SET character_set_client = @saved_cs_client */;
  1233.  
  1234. --
  1235. -- Dumping data for table `ggrc_risks_alembic_version`
  1236. --
  1237.  
  1238. LOCK TABLES `ggrc_risks_alembic_version` WRITE;
  1239. /*!40000 ALTER TABLE `ggrc_risks_alembic_version` DISABLE KEYS */;
  1240. INSERT INTO `ggrc_risks_alembic_version` VALUES ('3d2acc8a4425');
  1241. /*!40000 ALTER TABLE `ggrc_risks_alembic_version` ENABLE KEYS */;
  1242. UNLOCK TABLES;
  1243.  
  1244. --
  1245. -- Table structure for table `ggrc_workflows_alembic_version`
  1246. --
  1247.  
  1248. DROP TABLE IF EXISTS `ggrc_workflows_alembic_version`;
  1249. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1250. /*!40101 SET character_set_client = utf8 */;
  1251. CREATE TABLE `ggrc_workflows_alembic_version` (
  1252. `version_num` varchar(32) NOT NULL
  1253. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1254. /*!40101 SET character_set_client = @saved_cs_client */;
  1255.  
  1256. --
  1257. -- Dumping data for table `ggrc_workflows_alembic_version`
  1258. --
  1259.  
  1260. LOCK TABLES `ggrc_workflows_alembic_version` WRITE;
  1261. /*!40000 ALTER TABLE `ggrc_workflows_alembic_version` DISABLE KEYS */;
  1262. INSERT INTO `ggrc_workflows_alembic_version` VALUES ('4cb78ab9a321');
  1263. /*!40000 ALTER TABLE `ggrc_workflows_alembic_version` ENABLE KEYS */;
  1264. UNLOCK TABLES;
  1265.  
  1266. --
  1267. -- Table structure for table `helps`
  1268. --
  1269.  
  1270. DROP TABLE IF EXISTS `helps`;
  1271. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1272. /*!40101 SET character_set_client = utf8 */;
  1273. CREATE TABLE `helps` (
  1274. `id` int(11) NOT NULL AUTO_INCREMENT,
  1275. `modified_by_id` int(11) DEFAULT NULL,
  1276. `created_at` datetime NOT NULL,
  1277. `updated_at` datetime NOT NULL,
  1278. `slug` varchar(250) NOT NULL,
  1279. `title` varchar(250) NOT NULL,
  1280. `content` text,
  1281. `context_id` int(11) DEFAULT NULL,
  1282. PRIMARY KEY (`id`),
  1283. UNIQUE KEY `uq_helps` (`slug`),
  1284. KEY `fk_helps_contexts` (`context_id`),
  1285. KEY `ix_helps_updated_at` (`updated_at`),
  1286. CONSTRAINT `fk_helps_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1287. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1288. /*!40101 SET character_set_client = @saved_cs_client */;
  1289.  
  1290. --
  1291. -- Dumping data for table `helps`
  1292. --
  1293.  
  1294. LOCK TABLES `helps` WRITE;
  1295. /*!40000 ALTER TABLE `helps` DISABLE KEYS */;
  1296. /*!40000 ALTER TABLE `helps` ENABLE KEYS */;
  1297. UNLOCK TABLES;
  1298.  
  1299. --
  1300. -- Table structure for table `issues`
  1301. --
  1302.  
  1303. DROP TABLE IF EXISTS `issues`;
  1304. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1305. /*!40101 SET character_set_client = utf8 */;
  1306. CREATE TABLE `issues` (
  1307. `id` int(11) NOT NULL AUTO_INCREMENT,
  1308. `os_state` varchar(250) NOT NULL,
  1309. `test_plan` text,
  1310. `end_date` date DEFAULT NULL,
  1311. `start_date` date DEFAULT NULL,
  1312. `status` varchar(250) DEFAULT NULL,
  1313. `notes` text,
  1314. `description` text,
  1315. `url` varchar(250) DEFAULT NULL,
  1316. `reference_url` varchar(250) DEFAULT NULL,
  1317. `secondary_contact_id` int(11) DEFAULT NULL,
  1318. `contact_id` int(11) DEFAULT NULL,
  1319. `title` varchar(250) NOT NULL,
  1320. `slug` varchar(250) NOT NULL,
  1321. `created_at` datetime NOT NULL,
  1322. `modified_by_id` int(11) DEFAULT NULL,
  1323. `updated_at` datetime NOT NULL,
  1324. `context_id` int(11) DEFAULT NULL,
  1325. PRIMARY KEY (`id`),
  1326. UNIQUE KEY `uq_issues` (`slug`),
  1327. UNIQUE KEY `uq_t_issues` (`title`),
  1328. KEY `contact_id` (`contact_id`),
  1329. KEY `context_id` (`context_id`),
  1330. KEY `secondary_contact_id` (`secondary_contact_id`),
  1331. CONSTRAINT `issues_ibfk_1` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  1332. CONSTRAINT `issues_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  1333. CONSTRAINT `issues_ibfk_3` FOREIGN KEY (`secondary_contact_id`) REFERENCES `people` (`id`)
  1334. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  1335. /*!40101 SET character_set_client = @saved_cs_client */;
  1336.  
  1337. --
  1338. -- Dumping data for table `issues`
  1339. --
  1340.  
  1341. LOCK TABLES `issues` WRITE;
  1342. /*!40000 ALTER TABLE `issues` DISABLE KEYS */;
  1343. INSERT INTO `issues` VALUES (1,'Draft','plan','2015-07-15','2015-07-01','Draft','this is a note','test','google.com','ggrc.com',16,15,'issue 1','iss-1','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(2,'Draft','plan','2015-07-15','2015-07-01','Final','this is a note','test','google.com','ggrc.com',16,15,'issue 2','iss-2','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(3,'Draft','plan','2015-07-15','2015-07-01','Effective','this is a note','test','google.com','ggrc.com',16,15,'issue 3','iss-3','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(4,'Draft','plan','2015-07-15','2015-07-01','Ineffective','this is a note','test','google.com','ggrc.com',16,15,'issue 4','iss-4','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(5,'Draft','plan','2015-07-15','2015-07-01','Launched','this is a note','test','google.com','ggrc.com',16,15,'issue 5','iss-5','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(6,'Draft','plan','2015-07-15','2015-07-01','Not Launched','this is a note','test','google.com','ggrc.com',16,15,'issue 6','iss-6','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(7,'Draft','plan','2015-07-15','2015-07-01','In Scope','this is a note','test','google.com','ggrc.com',16,15,'issue 7','iss-7','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(8,'Draft','plan','2015-07-15','2015-07-01','Not in Scope','this is a note','test','google.com','ggrc.com',16,15,'issue 8','iss-8','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(9,'Draft','plan','2015-07-15','2015-07-01','Deprecated','this is a note','test','google.com','ggrc.com',16,15,'issue 9','iss-9','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL),(10,'Draft','plan','2015-07-15','2015-07-01','Draft','this is a note','test','google.com','ggrc.com',16,15,'issue 10','iss-10','2016-11-10 16:49:40',1,'2016-11-10 16:49:40',NULL);
  1344. /*!40000 ALTER TABLE `issues` ENABLE KEYS */;
  1345. UNLOCK TABLES;
  1346.  
  1347. --
  1348. -- Table structure for table `markets`
  1349. --
  1350.  
  1351. DROP TABLE IF EXISTS `markets`;
  1352. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1353. /*!40101 SET character_set_client = utf8 */;
  1354. CREATE TABLE `markets` (
  1355. `id` int(11) NOT NULL AUTO_INCREMENT,
  1356. `modified_by_id` int(11) DEFAULT NULL,
  1357. `created_at` datetime NOT NULL,
  1358. `updated_at` datetime NOT NULL,
  1359. `description` text,
  1360. `url` varchar(250) DEFAULT NULL,
  1361. `start_date` date DEFAULT NULL,
  1362. `end_date` date DEFAULT NULL,
  1363. `slug` varchar(250) NOT NULL,
  1364. `title` varchar(250) NOT NULL,
  1365. `context_id` int(11) DEFAULT NULL,
  1366. `contact_id` int(11) DEFAULT NULL,
  1367. `notes` text,
  1368. `status` varchar(250) DEFAULT NULL,
  1369. `reference_url` varchar(250) DEFAULT NULL,
  1370. `secondary_contact_id` int(11) DEFAULT NULL,
  1371. `os_state` varchar(16) NOT NULL,
  1372. PRIMARY KEY (`id`),
  1373. UNIQUE KEY `uq_markets` (`slug`),
  1374. UNIQUE KEY `uq_t_markets` (`title`),
  1375. KEY `fk_markets_contexts` (`context_id`),
  1376. KEY `fk_markets_contact` (`contact_id`),
  1377. KEY `ix_markets_updated_at` (`updated_at`),
  1378. KEY `fk_markets_secondary_contact` (`secondary_contact_id`),
  1379. CONSTRAINT `fk_markets_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1380. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  1381. /*!40101 SET character_set_client = @saved_cs_client */;
  1382.  
  1383. --
  1384. -- Dumping data for table `markets`
  1385. --
  1386.  
  1387. LOCK TABLES `markets` WRITE;
  1388. /*!40000 ALTER TABLE `markets` DISABLE KEYS */;
  1389. INSERT INTO `markets` VALUES (1,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-1','mkt-1',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-2','mkt-2',NULL,15,'this is a note','Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-3','mkt-3',NULL,15,'this is a note','Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-4','mkt-4',NULL,15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-5','mkt-5',NULL,15,'this is a note','Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-6','mkt-6',NULL,15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-7','mkt-7',NULL,15,'this is a note','In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-8','mkt-8',NULL,15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-9','mkt-9',NULL,15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','mkt-10','mkt-10',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft');
  1390. /*!40000 ALTER TABLE `markets` ENABLE KEYS */;
  1391. UNLOCK TABLES;
  1392.  
  1393. --
  1394. -- Table structure for table `meetings`
  1395. --
  1396.  
  1397. DROP TABLE IF EXISTS `meetings`;
  1398. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1399. /*!40101 SET character_set_client = utf8 */;
  1400. CREATE TABLE `meetings` (
  1401. `id` int(11) NOT NULL AUTO_INCREMENT,
  1402. `title` varchar(250) NOT NULL,
  1403. `created_at` datetime NOT NULL,
  1404. `modified_by_id` int(11) DEFAULT NULL,
  1405. `updated_at` datetime NOT NULL,
  1406. `context_id` int(11) DEFAULT NULL,
  1407. `description` text,
  1408. `start_at` datetime NOT NULL,
  1409. `end_at` datetime NOT NULL,
  1410. PRIMARY KEY (`id`),
  1411. KEY `fk_meetings_contexts` (`context_id`),
  1412. KEY `ix_meetings_updated_at` (`updated_at`),
  1413. CONSTRAINT `meetings_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1414. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1415. /*!40101 SET character_set_client = @saved_cs_client */;
  1416.  
  1417. --
  1418. -- Dumping data for table `meetings`
  1419. --
  1420.  
  1421. LOCK TABLES `meetings` WRITE;
  1422. /*!40000 ALTER TABLE `meetings` DISABLE KEYS */;
  1423. /*!40000 ALTER TABLE `meetings` ENABLE KEYS */;
  1424. UNLOCK TABLES;
  1425.  
  1426. --
  1427. -- Table structure for table `notification_configs`
  1428. --
  1429.  
  1430. DROP TABLE IF EXISTS `notification_configs`;
  1431. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1432. /*!40101 SET character_set_client = utf8 */;
  1433. CREATE TABLE `notification_configs` (
  1434. `id` int(11) NOT NULL AUTO_INCREMENT,
  1435. `name` varchar(250) DEFAULT NULL,
  1436. `created_at` datetime NOT NULL,
  1437. `modified_by_id` int(11) DEFAULT NULL,
  1438. `updated_at` datetime NOT NULL,
  1439. `context_id` int(11) DEFAULT NULL,
  1440. `enable_flag` tinyint(1) DEFAULT NULL,
  1441. `notif_type` varchar(250) DEFAULT NULL,
  1442. `person_id` int(11) NOT NULL,
  1443. PRIMARY KEY (`id`),
  1444. UNIQUE KEY `uq_notif_configs_person_id_notif_type` (`person_id`,`notif_type`),
  1445. KEY `fk_notification_configs_contexts` (`context_id`),
  1446. KEY `ix_notification_configs_updated_at` (`updated_at`),
  1447. CONSTRAINT `notification_configs_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  1448. CONSTRAINT `notification_configs_ibfk_2` FOREIGN KEY (`person_id`) REFERENCES `people` (`id`)
  1449. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1450. /*!40101 SET character_set_client = @saved_cs_client */;
  1451.  
  1452. --
  1453. -- Dumping data for table `notification_configs`
  1454. --
  1455.  
  1456. LOCK TABLES `notification_configs` WRITE;
  1457. /*!40000 ALTER TABLE `notification_configs` DISABLE KEYS */;
  1458. /*!40000 ALTER TABLE `notification_configs` ENABLE KEYS */;
  1459. UNLOCK TABLES;
  1460.  
  1461. --
  1462. -- Table structure for table `notification_types`
  1463. --
  1464.  
  1465. DROP TABLE IF EXISTS `notification_types`;
  1466. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1467. /*!40101 SET character_set_client = utf8 */;
  1468. CREATE TABLE `notification_types` (
  1469. `id` int(11) NOT NULL AUTO_INCREMENT,
  1470. `name` varchar(250) NOT NULL,
  1471. `description` varchar(250) DEFAULT NULL,
  1472. `advance_notice` int(11) DEFAULT NULL,
  1473. `template` varchar(250) NOT NULL,
  1474. `instant` tinyint(1) NOT NULL,
  1475. `created_at` datetime NOT NULL,
  1476. `modified_by_id` int(11) DEFAULT NULL,
  1477. `updated_at` datetime NOT NULL,
  1478. `context_id` int(11) DEFAULT NULL,
  1479. PRIMARY KEY (`id`),
  1480. KEY `modified_by_id` (`modified_by_id`),
  1481. CONSTRAINT `notification_types_ibfk_1` FOREIGN KEY (`modified_by_id`) REFERENCES `people` (`id`)
  1482. ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8;
  1483. /*!40101 SET character_set_client = @saved_cs_client */;
  1484.  
  1485. --
  1486. -- Dumping data for table `notification_types`
  1487. --
  1488.  
  1489. LOCK TABLES `notification_types` WRITE;
  1490. /*!40000 ALTER TABLE `notification_types` DISABLE KEYS */;
  1491. INSERT INTO `notification_types` VALUES (1,'request_open','Notify all assignees Requesters Assignees and Verifiers that a new request has been created.',0,'request_open',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(2,'request_declined','Notify Requester that a request has been declined.',0,'request_declined',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(3,'request_manual','Send a manual notification to the Requester.',0,'request_manual',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(4,'assessment_open','Send an open assessment notification to Assessors, Assignees and Verifiers.',0,'assessment_open',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(5,'assessment_declined','Notify Assessor that an assessment was declined.',0,'assessment_declined',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(6,'assessment_manual','Send a manual notification to the Requester.',0,'assessment_manual',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(7,'assessment_assessor_reminder','Notify all Assessors that they should take a look at the assessment.',0,'',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(8,'comment_created','Notify selected users that a comment has been created',0,'comment_created',0,'2016-11-10 16:48:52',NULL,'2016-11-10 16:48:52',NULL),(9,'cycle_created','Notify workflow members that a one time workflow has been started and send them their assigned tasks.',0,'cycle_created',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(10,'manual_cycle_created','Notify workflow members that a one time workflow has been started and send them their assigned tasks.',0,'manual_cycle_created',1,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(11,'cycle_task_due_in','Notify task assignee his task is due in X days',1,'cycle_task_due_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(12,'one_time_cycle_task_due_in','Notify task assignee his task is due in X days',1,'cycle_task_due_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(13,'weekly_cycle_task_due_in','Notify task assignee his task is due in X days',1,'cycle_task_due_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(14,'monthly_cycle_task_due_in','Notify task assignee his task is due in X days',1,'cycle_task_due_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(15,'quarterly_cycle_task_due_in','Notify task assignee his task is due in X days',1,'cycle_task_due_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(16,'annually_cycle_task_due_in','Notify task assignee his task is due in X days',1,'cycle_task_due_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(17,'cycle_task_due_today','Notify task assignee his task is due today',0,'cycle_task_due_today',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(18,'cycle_task_reassigned','Notify task assignee his task is due today',0,'cycle_task_due_today',1,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(19,'task_group_assignee_change','Email owners on task group assignee change.',0,'task_group_assignee_change',1,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(20,'cycle_task_declined','Notify task assignee his task is due today',0,'cycle_task_due_today',1,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(21,'all_cycle_tasks_completed','Notify workflow owner when all cycle tasks in one cycle have been completed and verified',1,'weekly_workflow_starts_in',1,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(22,'weekly_workflow_starts_in','Advanced notification for a recurring workflow.',1,'weekly_workflow_starts_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(23,'monthly_workflow_starts_in','Advanced notification for a recurring workflow.',3,'monthly_workflow_starts_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(24,'quarterly_workflow_starts_in','Advanced notification for a recurring workflow.',7,'quaterly_workflow_starts_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(25,'annually_workflow_starts_in','Advanced notification for a recurring workflow.',15,'annual_workflow_starts_in',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL),(26,'cycle_start_failed','Notify workflow owners that a cycle has failed tostart for a recurring workflow',0,'cycle_start_failed',0,'2016-11-10 16:48:55',NULL,'2016-11-10 16:48:55',NULL);
  1492. /*!40000 ALTER TABLE `notification_types` ENABLE KEYS */;
  1493. UNLOCK TABLES;
  1494.  
  1495. --
  1496. -- Table structure for table `notifications`
  1497. --
  1498.  
  1499. DROP TABLE IF EXISTS `notifications`;
  1500. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1501. /*!40101 SET character_set_client = utf8 */;
  1502. CREATE TABLE `notifications` (
  1503. `id` int(11) NOT NULL AUTO_INCREMENT,
  1504. `object_id` int(11) NOT NULL,
  1505. `object_type` varchar(250) NOT NULL,
  1506. `notification_type_id` int(11) NOT NULL,
  1507. `send_on` datetime NOT NULL,
  1508. `sent_at` datetime DEFAULT NULL,
  1509. `custom_message` text,
  1510. `force_notifications` tinyint(1) NOT NULL,
  1511. `created_at` datetime NOT NULL,
  1512. `modified_by_id` int(11) DEFAULT NULL,
  1513. `updated_at` datetime NOT NULL,
  1514. `context_id` int(11) DEFAULT NULL,
  1515. PRIMARY KEY (`id`),
  1516. KEY `modified_by_id` (`modified_by_id`),
  1517. KEY `fk_notification_type_id` (`notification_type_id`),
  1518. CONSTRAINT `notifications_ibfk_2` FOREIGN KEY (`notification_type_id`) REFERENCES `notification_types` (`id`),
  1519. CONSTRAINT `notifications_ibfk_3` FOREIGN KEY (`modified_by_id`) REFERENCES `people` (`id`)
  1520. ) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8;
  1521. /*!40101 SET character_set_client = @saved_cs_client */;
  1522.  
  1523. --
  1524. -- Dumping data for table `notifications`
  1525. --
  1526.  
  1527. LOCK TABLES `notifications` WRITE;
  1528. /*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
  1529. INSERT INTO `notifications` VALUES (1,1,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(2,2,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(3,3,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(4,4,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(5,5,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(6,6,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(7,7,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(8,8,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(9,9,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(10,10,'Assessment',4,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:49:45',NULL,'2016-11-10 16:49:45',NULL),(11,1,'Cycle',9,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(12,1,'CycleTaskGroupObjectTask',9,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(13,1,'CycleTaskGroupObjectTask',13,'2016-11-09 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(14,1,'CycleTaskGroupObjectTask',17,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(15,2,'CycleTaskGroupObjectTask',9,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(16,2,'CycleTaskGroupObjectTask',13,'2016-11-09 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(17,2,'CycleTaskGroupObjectTask',17,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(18,3,'CycleTaskGroupObjectTask',9,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(19,3,'CycleTaskGroupObjectTask',13,'2016-11-09 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(20,3,'CycleTaskGroupObjectTask',17,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(21,4,'CycleTaskGroupObjectTask',9,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(22,4,'CycleTaskGroupObjectTask',13,'2016-11-09 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(23,4,'CycleTaskGroupObjectTask',17,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(24,2,'Workflow',22,'2016-11-13 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(25,2,'Workflow',26,'2016-11-15 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(26,2,'TaskGroupTask',26,'2016-11-14 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(27,8,'TaskGroupTask',26,'2016-11-14 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(28,11,'TaskGroupTask',26,'2016-11-14 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(29,12,'TaskGroupTask',26,'2016-11-14 00:00:00',NULL,NULL,0,'2016-11-10 16:51:19',NULL,'2016-11-10 16:51:19',NULL),(30,2,'Cycle',10,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(31,5,'CycleTaskGroupObjectTask',10,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(32,5,'CycleTaskGroupObjectTask',13,'2016-11-17 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(33,5,'CycleTaskGroupObjectTask',17,'2016-11-18 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(34,6,'CycleTaskGroupObjectTask',10,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(35,6,'CycleTaskGroupObjectTask',13,'2016-11-17 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(36,6,'CycleTaskGroupObjectTask',17,'2016-11-18 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(37,7,'CycleTaskGroupObjectTask',10,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(38,7,'CycleTaskGroupObjectTask',13,'2016-11-16 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(39,7,'CycleTaskGroupObjectTask',17,'2016-11-17 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(40,8,'CycleTaskGroupObjectTask',10,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(41,8,'CycleTaskGroupObjectTask',13,'2016-11-16 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(42,8,'CycleTaskGroupObjectTask',17,'2016-11-17 00:00:00',NULL,NULL,0,'2016-11-10 16:52:02',NULL,'2016-11-10 16:52:02',NULL),(43,8,'CycleTaskGroupObjectTask',20,'2016-11-10 00:00:00',NULL,NULL,0,'2016-11-10 16:52:51',NULL,'2016-11-10 16:52:51',NULL);
  1530. /*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
  1531. UNLOCK TABLES;
  1532.  
  1533. --
  1534. -- Table structure for table `object_documents`
  1535. --
  1536.  
  1537. DROP TABLE IF EXISTS `object_documents`;
  1538. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1539. /*!40101 SET character_set_client = utf8 */;
  1540. CREATE TABLE `object_documents` (
  1541. `id` int(11) NOT NULL AUTO_INCREMENT,
  1542. `modified_by_id` int(11) DEFAULT NULL,
  1543. `created_at` datetime NOT NULL,
  1544. `updated_at` datetime NOT NULL,
  1545. `start_date` date DEFAULT NULL,
  1546. `end_date` date DEFAULT NULL,
  1547. `role` varchar(250) DEFAULT NULL,
  1548. `notes` text,
  1549. `document_id` int(11) NOT NULL,
  1550. `documentable_id` int(11) NOT NULL,
  1551. `documentable_type` varchar(250) NOT NULL,
  1552. `context_id` int(11) DEFAULT NULL,
  1553. `status` varchar(250) DEFAULT NULL,
  1554. PRIMARY KEY (`id`),
  1555. UNIQUE KEY `uq_object_documents` (`document_id`,`documentable_id`,`documentable_type`),
  1556. KEY `fk_object_documents_contexts` (`context_id`),
  1557. KEY `ix_document_id` (`document_id`),
  1558. KEY `ix_object_documents_updated_at` (`updated_at`),
  1559. CONSTRAINT `fk_object_documents_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  1560. CONSTRAINT `object_documents_ibfk_1` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`)
  1561. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1562. /*!40101 SET character_set_client = @saved_cs_client */;
  1563.  
  1564. --
  1565. -- Dumping data for table `object_documents`
  1566. --
  1567.  
  1568. LOCK TABLES `object_documents` WRITE;
  1569. /*!40000 ALTER TABLE `object_documents` DISABLE KEYS */;
  1570. /*!40000 ALTER TABLE `object_documents` ENABLE KEYS */;
  1571. UNLOCK TABLES;
  1572.  
  1573. --
  1574. -- Table structure for table `object_events`
  1575. --
  1576.  
  1577. DROP TABLE IF EXISTS `object_events`;
  1578. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1579. /*!40101 SET character_set_client = utf8 */;
  1580. CREATE TABLE `object_events` (
  1581. `id` int(11) NOT NULL AUTO_INCREMENT,
  1582. `modified_by_id` int(11) DEFAULT NULL,
  1583. `created_at` datetime NOT NULL,
  1584. `updated_at` datetime NOT NULL,
  1585. `context_id` int(11) DEFAULT NULL,
  1586. `calendar_id` varchar(250) DEFAULT NULL,
  1587. `event_id` varchar(250) NOT NULL,
  1588. `eventable_id` int(11) NOT NULL,
  1589. `eventable_type` varchar(250) NOT NULL,
  1590. PRIMARY KEY (`id`),
  1591. KEY `fk_object_events_contexts` (`context_id`),
  1592. KEY `ix_object_events_updated_at` (`updated_at`)
  1593. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1594. /*!40101 SET character_set_client = @saved_cs_client */;
  1595.  
  1596. --
  1597. -- Dumping data for table `object_events`
  1598. --
  1599.  
  1600. LOCK TABLES `object_events` WRITE;
  1601. /*!40000 ALTER TABLE `object_events` DISABLE KEYS */;
  1602. /*!40000 ALTER TABLE `object_events` ENABLE KEYS */;
  1603. UNLOCK TABLES;
  1604.  
  1605. --
  1606. -- Table structure for table `object_files`
  1607. --
  1608.  
  1609. DROP TABLE IF EXISTS `object_files`;
  1610. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1611. /*!40101 SET character_set_client = utf8 */;
  1612. CREATE TABLE `object_files` (
  1613. `id` int(11) NOT NULL AUTO_INCREMENT,
  1614. `modified_by_id` int(11) DEFAULT NULL,
  1615. `created_at` datetime NOT NULL,
  1616. `updated_at` datetime NOT NULL,
  1617. `context_id` int(11) DEFAULT NULL,
  1618. `parent_folder_id` varchar(250) DEFAULT NULL,
  1619. `file_id` varchar(250) NOT NULL,
  1620. `fileable_id` int(11) NOT NULL,
  1621. `fileable_type` varchar(250) NOT NULL,
  1622. PRIMARY KEY (`id`),
  1623. KEY `fk_object_files_contexts` (`context_id`),
  1624. KEY `ix_object_files_updated_at` (`updated_at`)
  1625. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1626. /*!40101 SET character_set_client = @saved_cs_client */;
  1627.  
  1628. --
  1629. -- Dumping data for table `object_files`
  1630. --
  1631.  
  1632. LOCK TABLES `object_files` WRITE;
  1633. /*!40000 ALTER TABLE `object_files` DISABLE KEYS */;
  1634. /*!40000 ALTER TABLE `object_files` ENABLE KEYS */;
  1635. UNLOCK TABLES;
  1636.  
  1637. --
  1638. -- Table structure for table `object_folders`
  1639. --
  1640.  
  1641. DROP TABLE IF EXISTS `object_folders`;
  1642. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1643. /*!40101 SET character_set_client = utf8 */;
  1644. CREATE TABLE `object_folders` (
  1645. `id` int(11) NOT NULL AUTO_INCREMENT,
  1646. `modified_by_id` int(11) DEFAULT NULL,
  1647. `created_at` datetime NOT NULL,
  1648. `updated_at` datetime NOT NULL,
  1649. `context_id` int(11) DEFAULT NULL,
  1650. `parent_folder_id` varchar(250) DEFAULT NULL,
  1651. `folder_id` varchar(250) NOT NULL,
  1652. `folderable_id` int(11) NOT NULL,
  1653. `folderable_type` varchar(250) NOT NULL,
  1654. PRIMARY KEY (`id`),
  1655. KEY `fk_object_folders_contexts` (`context_id`),
  1656. KEY `ix_folderable_id_type` (`folderable_type`,`folderable_id`),
  1657. KEY `ix_object_folders_updated_at` (`updated_at`)
  1658. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  1659. /*!40101 SET character_set_client = @saved_cs_client */;
  1660.  
  1661. --
  1662. -- Dumping data for table `object_folders`
  1663. --
  1664.  
  1665. LOCK TABLES `object_folders` WRITE;
  1666. /*!40000 ALTER TABLE `object_folders` DISABLE KEYS */;
  1667. /*!40000 ALTER TABLE `object_folders` ENABLE KEYS */;
  1668. UNLOCK TABLES;
  1669.  
  1670. --
  1671. -- Table structure for table `object_owners`
  1672. --
  1673.  
  1674. DROP TABLE IF EXISTS `object_owners`;
  1675. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1676. /*!40101 SET character_set_client = utf8 */;
  1677. CREATE TABLE `object_owners` (
  1678. `id` int(11) NOT NULL AUTO_INCREMENT,
  1679. `person_id` int(11) NOT NULL,
  1680. `ownable_id` int(11) NOT NULL,
  1681. `ownable_type` varchar(250) NOT NULL,
  1682. `modified_by_id` int(11) DEFAULT NULL,
  1683. `created_at` datetime NOT NULL,
  1684. `updated_at` datetime NOT NULL,
  1685. `context_id` int(11) DEFAULT NULL,
  1686. `status` varchar(250) DEFAULT NULL,
  1687. PRIMARY KEY (`id`),
  1688. UNIQUE KEY `uq_id_owners` (`person_id`,`ownable_id`,`ownable_type`),
  1689. KEY `fk_object_owners_contexts` (`context_id`),
  1690. KEY `ix_object_owners_ownable` (`ownable_type`,`ownable_id`),
  1691. KEY `ix_object_owners_updated_at` (`updated_at`),
  1692. CONSTRAINT `object_owners_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `people` (`id`),
  1693. CONSTRAINT `object_owners_ibfk_2` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1694. ) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=utf8;
  1695. /*!40101 SET character_set_client = @saved_cs_client */;
  1696.  
  1697. --
  1698. -- Dumping data for table `object_owners`
  1699. --
  1700.  
  1701. LOCK TABLES `object_owners` WRITE;
  1702. /*!40000 ALTER TABLE `object_owners` DISABLE KEYS */;
  1703. INSERT INTO `object_owners` VALUES (1,15,1,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(2,15,2,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(3,15,3,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(4,15,4,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(5,15,5,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(6,15,6,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(7,15,7,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(8,15,8,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(9,15,9,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(10,15,10,'Issue',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(11,15,1,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(12,15,2,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(13,15,3,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(14,15,4,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(15,15,5,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(16,15,6,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(17,15,7,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(18,15,8,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(19,15,9,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(20,15,10,'Contract',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',NULL,'Draft'),(21,15,1,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(22,15,2,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(23,15,3,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(24,15,4,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(25,15,5,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(26,15,6,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(27,15,7,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(28,15,8,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(29,15,9,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(30,15,10,'Clause',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(31,15,1,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(32,15,2,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(33,15,3,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(34,15,4,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(35,15,5,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(36,15,6,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(37,15,7,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(38,15,8,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(39,15,9,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(40,15,10,'Objective',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(41,15,1,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(42,15,2,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(43,15,3,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(44,15,4,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(45,15,5,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(46,15,6,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(47,15,7,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(48,15,8,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(49,15,9,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(50,15,10,'OrgGroup',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(51,15,1,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(52,15,2,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(53,15,3,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(54,15,4,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(55,15,5,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(56,15,6,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(57,15,7,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(58,15,8,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(59,15,9,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(60,15,10,'Vendor',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(61,15,1,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(62,15,2,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(63,15,3,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(64,15,4,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(65,15,5,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(66,15,6,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(67,15,7,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(68,15,8,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(69,15,9,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(70,15,10,'System',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',NULL,'Draft'),(71,15,11,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(72,15,12,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(73,15,13,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(74,15,14,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(75,15,15,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(76,15,16,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(77,15,17,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(78,15,18,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(79,15,19,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(80,15,20,'Process',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(81,15,1,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(82,15,2,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(83,15,3,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(84,15,4,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(85,15,5,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(86,15,6,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(87,15,7,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(88,15,8,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(89,15,9,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(90,15,10,'DataAsset',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(91,15,1,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(92,15,2,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(93,15,3,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(94,15,4,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(95,15,5,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(96,15,6,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(97,15,7,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(98,15,8,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(99,15,9,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(100,15,10,'Product',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(101,15,1,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(102,15,2,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(103,15,3,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(104,15,4,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(105,15,5,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(106,15,6,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(107,15,7,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(108,15,8,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(109,15,9,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(110,15,10,'Project',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(111,15,1,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(112,15,2,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(113,15,3,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(114,15,4,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(115,15,5,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(116,15,6,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(117,15,7,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(118,15,8,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(119,15,9,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(120,15,10,'Facility',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(121,15,1,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(122,15,2,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(123,15,3,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(124,15,4,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(125,15,5,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(126,15,6,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(127,15,7,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(128,15,8,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(129,15,9,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(130,15,10,'Market',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',NULL,'Draft'),(131,15,1,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(132,15,2,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(133,15,3,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(134,15,4,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(135,15,5,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(136,15,6,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(137,15,7,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(138,15,8,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(139,15,9,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(140,15,10,'Risk',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(141,15,1,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(142,15,2,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(143,15,3,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(144,15,4,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(145,15,5,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(146,15,6,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(147,15,7,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(148,15,8,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(149,15,9,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(150,15,10,'AccessGroup',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',NULL,'Draft'),(151,15,11,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(152,15,12,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(153,15,13,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(154,15,14,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(155,15,15,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(156,15,16,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(157,15,17,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(158,15,18,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(159,15,19,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(160,15,20,'Policy',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(161,15,21,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(162,15,22,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(163,15,23,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(164,15,24,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(165,15,25,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(166,15,26,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(167,15,27,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(168,15,28,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(169,15,29,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(170,15,30,'Regulation',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',NULL,'Draft'),(171,15,31,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(172,15,32,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(173,15,33,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(174,15,34,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(175,15,35,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(176,15,36,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(177,15,37,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(178,15,38,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(179,15,39,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(180,15,40,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(181,15,41,'Standard',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(182,15,1,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(183,15,2,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(184,15,3,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(185,15,4,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(186,15,5,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(187,15,6,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(188,15,7,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(189,15,8,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(190,15,9,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(191,15,10,'Section',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(192,15,1,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(193,15,2,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(194,15,3,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(195,15,4,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(196,15,5,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(197,15,6,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(198,15,7,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(199,15,8,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(200,15,9,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft'),(201,15,10,'Control',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',NULL,'Draft');
  1704. /*!40000 ALTER TABLE `object_owners` ENABLE KEYS */;
  1705. UNLOCK TABLES;
  1706.  
  1707. --
  1708. -- Table structure for table `object_people`
  1709. --
  1710.  
  1711. DROP TABLE IF EXISTS `object_people`;
  1712. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1713. /*!40101 SET character_set_client = utf8 */;
  1714. CREATE TABLE `object_people` (
  1715. `id` int(11) NOT NULL AUTO_INCREMENT,
  1716. `modified_by_id` int(11) DEFAULT NULL,
  1717. `created_at` datetime NOT NULL,
  1718. `updated_at` datetime NOT NULL,
  1719. `start_date` date DEFAULT NULL,
  1720. `end_date` date DEFAULT NULL,
  1721. `role` varchar(250) DEFAULT NULL,
  1722. `notes` text,
  1723. `person_id` int(11) NOT NULL,
  1724. `personable_id` int(11) NOT NULL,
  1725. `personable_type` varchar(250) NOT NULL,
  1726. `context_id` int(11) DEFAULT NULL,
  1727. `status` varchar(250) DEFAULT NULL,
  1728. PRIMARY KEY (`id`),
  1729. UNIQUE KEY `uq_object_people` (`person_id`,`personable_id`,`personable_type`),
  1730. KEY `fk_object_people_contexts` (`context_id`),
  1731. KEY `ix_person_id` (`person_id`),
  1732. KEY `ix_object_people_updated_at` (`updated_at`),
  1733. CONSTRAINT `fk_object_people_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  1734. CONSTRAINT `object_people_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `people` (`id`)
  1735. ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
  1736. /*!40101 SET character_set_client = @saved_cs_client */;
  1737.  
  1738. --
  1739. -- Dumping data for table `object_people`
  1740. --
  1741.  
  1742. LOCK TABLES `object_people` WRITE;
  1743. /*!40000 ALTER TABLE `object_people` DISABLE KEYS */;
  1744. INSERT INTO `object_people` VALUES (1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',NULL,NULL,NULL,NULL,21,21,'Regulation',NULL,'Draft'),(2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',NULL,NULL,NULL,NULL,22,22,'Regulation',NULL,'Draft'),(3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',NULL,NULL,NULL,NULL,23,23,'Regulation',NULL,'Draft'),(4,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',NULL,NULL,NULL,NULL,24,24,'Regulation',NULL,'Draft'),(5,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',NULL,NULL,NULL,NULL,25,25,'Regulation',NULL,'Draft');
  1745. /*!40000 ALTER TABLE `object_people` ENABLE KEYS */;
  1746. UNLOCK TABLES;
  1747.  
  1748. --
  1749. -- Table structure for table `objectives`
  1750. --
  1751.  
  1752. DROP TABLE IF EXISTS `objectives`;
  1753. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1754. /*!40101 SET character_set_client = utf8 */;
  1755. CREATE TABLE `objectives` (
  1756. `id` int(11) NOT NULL AUTO_INCREMENT,
  1757. `modified_by_id` int(11) DEFAULT NULL,
  1758. `created_at` datetime NOT NULL,
  1759. `updated_at` datetime NOT NULL,
  1760. `description` text,
  1761. `url` varchar(250) DEFAULT NULL,
  1762. `slug` varchar(250) NOT NULL,
  1763. `title` varchar(250) NOT NULL,
  1764. `notes` text,
  1765. `context_id` int(11) DEFAULT NULL,
  1766. `contact_id` int(11) DEFAULT NULL,
  1767. `status` varchar(250) DEFAULT NULL,
  1768. `reference_url` varchar(250) DEFAULT NULL,
  1769. `secondary_contact_id` int(11) DEFAULT NULL,
  1770. `os_state` varchar(16) NOT NULL,
  1771. PRIMARY KEY (`id`),
  1772. UNIQUE KEY `uq_objectives` (`slug`),
  1773. UNIQUE KEY `uq_t_objectives` (`title`),
  1774. KEY `fk_objectives_contact` (`contact_id`),
  1775. KEY `fk_objectives_contexts` (`context_id`),
  1776. KEY `ix_objectives_updated_at` (`updated_at`),
  1777. KEY `fk_objectives_secondary_contact` (`secondary_contact_id`),
  1778. CONSTRAINT `objectives_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1779. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  1780. /*!40101 SET character_set_client = @saved_cs_client */;
  1781.  
  1782. --
  1783. -- Dumping data for table `objectives`
  1784. --
  1785.  
  1786. LOCK TABLES `objectives` WRITE;
  1787. /*!40000 ALTER TABLE `objectives` DISABLE KEYS */;
  1788. INSERT INTO `objectives` VALUES (1,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-1','obj-1','this is a note',NULL,15,'Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-2','obj-2','this is a note',NULL,15,'Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-3','obj-3','this is a note',NULL,15,'Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-4','obj-4','this is a note',NULL,15,'Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-5','obj-5','this is a note',NULL,15,'Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-6','obj-6','this is a note',NULL,15,'Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-7','obj-7','this is a note',NULL,15,'In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-8','obj-8','this is a note',NULL,15,'Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-9','obj-9','this is a note',NULL,15,'Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','obj-10','obj-10','this is a note',NULL,15,'Draft','ggrc.com',16,'Draft');
  1789. /*!40000 ALTER TABLE `objectives` ENABLE KEYS */;
  1790. UNLOCK TABLES;
  1791.  
  1792. --
  1793. -- Table structure for table `options`
  1794. --
  1795.  
  1796. DROP TABLE IF EXISTS `options`;
  1797. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1798. /*!40101 SET character_set_client = utf8 */;
  1799. CREATE TABLE `options` (
  1800. `id` int(11) NOT NULL AUTO_INCREMENT,
  1801. `modified_by_id` int(11) DEFAULT NULL,
  1802. `created_at` datetime NOT NULL,
  1803. `updated_at` datetime NOT NULL,
  1804. `description` text,
  1805. `role` varchar(250) DEFAULT NULL,
  1806. `title` varchar(250) DEFAULT NULL,
  1807. `required` tinyint(1) DEFAULT NULL,
  1808. `context_id` int(11) DEFAULT NULL,
  1809. PRIMARY KEY (`id`),
  1810. KEY `fk_options_contexts` (`context_id`),
  1811. KEY `ix_options_role` (`role`),
  1812. KEY `ix_options_updated_at` (`updated_at`),
  1813. CONSTRAINT `fk_options_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1814. ) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8;
  1815. /*!40101 SET character_set_client = @saved_cs_client */;
  1816.  
  1817. --
  1818. -- Dumping data for table `options`
  1819. --
  1820.  
  1821. LOCK TABLES `options` WRITE;
  1822. /*!40000 ALTER TABLE `options` DISABLE KEYS */;
  1823. INSERT INTO `options` VALUES (1,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'asset_type','Client List',NULL,NULL),(2,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'asset_type','Employee List',NULL,NULL),(3,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'asset_type','Ledger Accounts',NULL,NULL),(4,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'asset_type','Patents',NULL,NULL),(5,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'asset_type','Personal Identifiable Info',NULL,NULL),(6,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'asset_type','Source Code',NULL,NULL),(7,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'asset_type','User Data',NULL,NULL),(8,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','1 Month',NULL,NULL),(9,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','1 Week',NULL,NULL),(10,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','1 Year',NULL,NULL),(11,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','2 Months',NULL,NULL),(12,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','2 Weeks',NULL,NULL),(13,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','3 Months',NULL,NULL),(14,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','4 Months',NULL,NULL),(15,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_duration','6 Months',NULL,NULL),(16,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Ad-Hoc',NULL,NULL),(17,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Annual',NULL,NULL),(18,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Bi-Annual',NULL,NULL),(19,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Continuous',NULL,NULL),(20,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Daily',NULL,NULL),(21,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Hourly',NULL,NULL),(22,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Monthly',NULL,NULL),(23,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Quarterly',NULL,NULL),(24,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Semi-Annual',NULL,NULL),(25,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'audit_frequency','Weekly',NULL,NULL),(27,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'control_kind','Detective',NULL,NULL),(28,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'control_kind','Preventative',NULL,NULL),(38,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'directive_kind','Company Policy',NULL,NULL),(39,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'directive_kind','Data Asset Policy',NULL,NULL),(40,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'directive_kind','Operational Group Policy',NULL,NULL),(41,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'directive_kind','Regulation',NULL,NULL),(42,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_status','active',NULL,NULL),(43,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_status','deprecated',NULL,NULL),(44,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_type','Excel',NULL,NULL),(45,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_type','PDF',NULL,NULL),(46,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_type','Text',NULL,NULL),(47,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_type','URL',NULL,NULL),(48,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_type','Word',NULL,NULL),(49,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1980',NULL,NULL),(50,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1981',NULL,NULL),(51,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1982',NULL,NULL),(52,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1983',NULL,NULL),(53,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1984',NULL,NULL),(54,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1985',NULL,NULL),(55,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1986',NULL,NULL),(56,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1987',NULL,NULL),(57,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1988',NULL,NULL),(58,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1989',NULL,NULL),(59,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1990',NULL,NULL),(60,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1991',NULL,NULL),(61,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1992',NULL,NULL),(62,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1993',NULL,NULL),(63,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1994',NULL,NULL),(64,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1995',NULL,NULL),(65,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1996',NULL,NULL),(66,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1997',NULL,NULL),(67,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1998',NULL,NULL),(68,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','1999',NULL,NULL),(69,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2000',NULL,NULL),(70,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2001',NULL,NULL),(71,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2002',NULL,NULL),(72,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2003',NULL,NULL),(73,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2004',NULL,NULL),(74,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2005',NULL,NULL),(75,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2006',NULL,NULL),(76,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2007',NULL,NULL),(77,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2008',NULL,NULL),(78,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2009',NULL,NULL),(79,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2010',NULL,NULL),(80,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2011',NULL,NULL),(81,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2012',NULL,NULL),(82,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'document_year','2013',0,NULL),(83,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'entity_kind','Not Applicable',NULL,NULL),(84,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'entity_type','Business Unit',NULL,NULL),(85,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'entity_type','Division',NULL,NULL),(86,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'entity_type','Functional Group',NULL,NULL),(87,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'entity_type','Legal Entity',NULL,NULL),(88,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'language','English',NULL,NULL),(89,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Building',NULL,NULL),(90,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','HazMat Storage',NULL,NULL),(91,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Kitchen',NULL,NULL),(92,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Lab',NULL,NULL),(93,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Machine Room',NULL,NULL),(94,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Maintenance Facility',NULL,NULL),(95,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Office',NULL,NULL),(96,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Parking Garage',NULL,NULL),(97,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_kind','Workshop',NULL,NULL),(98,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Colo Data Center',NULL,NULL),(99,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Contract Manufacturer',NULL,NULL),(100,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Data Center',NULL,NULL),(101,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Distribution Center',NULL,NULL),(102,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Headquarters',NULL,NULL),(103,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Regional Office',NULL,NULL),(104,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Sales Office',NULL,NULL),(105,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'location_type','Vendor Worksite',NULL,NULL),(106,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'network_zone','Corp',0,NULL),(107,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'network_zone','Prod',0,NULL),(108,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'person_language','English',NULL,NULL),(109,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'product_kind','Not Applicable',NULL,NULL),(110,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'product_type','Appliance',NULL,NULL),(111,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'product_type','Desktop Software',NULL,NULL),(112,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'product_type','SaaS',NULL,NULL),(113,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'reference_type','Database',NULL,NULL),(114,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'reference_type','Document',NULL,NULL),(115,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'reference_type','Numeric Data',NULL,NULL),(116,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'reference_type','Screenshot',NULL,NULL),(117,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'reference_type','Simple Text',NULL,NULL),(118,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'reference_type','Website',NULL,NULL),(119,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'system_kind','Infrastructure',NULL,NULL),(120,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'system_type','Infrastructure',NULL,NULL),(121,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'threat_type','Insider Threat',NULL,NULL),(122,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'threat_type','Outsider Threat',NULL,NULL),(123,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Bi-Weekly',NULL,NULL),(124,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Yearly',NULL,NULL),(125,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Bi-Monthly',NULL,NULL),(126,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Continuous',NULL,NULL),(127,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Daily',NULL,NULL),(128,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Hourly',NULL,NULL),(129,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Indeterminate',0,NULL),(130,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Monthly',NULL,NULL),(131,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Quarterly',NULL,NULL),(132,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Semi-Annually',NULL,NULL),(133,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Transactional',0,NULL),(134,NULL,'2016-05-03 10:37:02','2016-05-03 10:37:02',NULL,'verify_frequency','Weekly',NULL,NULL),(135,NULL,'2016-11-10 16:48:52','2016-11-10 16:48:52',NULL,'network_zone','3rd Party',NULL,NULL),(136,NULL,'2016-11-10 16:48:52','2016-11-10 16:48:52',NULL,'network_zone','Core',NULL,NULL),(137,NULL,'2016-11-10 16:48:52','2016-11-10 16:48:52',NULL,'network_zone','Service',NULL,NULL),(138,NULL,'2016-11-10 16:48:52','2016-11-10 16:48:52',NULL,'control_kind','Corrective',NULL,NULL),(139,NULL,'2016-11-10 16:48:52','2016-11-10 16:48:52',NULL,'control_means','Technical',NULL,NULL),(140,NULL,'2016-11-10 16:48:52','2016-11-10 16:48:52',NULL,'control_means','Administrative',NULL,NULL),(141,NULL,'2016-11-10 16:48:52','2016-11-10 16:48:52',NULL,'control_means','Physical',NULL,NULL);
  1824. /*!40000 ALTER TABLE `options` ENABLE KEYS */;
  1825. UNLOCK TABLES;
  1826.  
  1827. --
  1828. -- Table structure for table `org_groups`
  1829. --
  1830.  
  1831. DROP TABLE IF EXISTS `org_groups`;
  1832. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1833. /*!40101 SET character_set_client = utf8 */;
  1834. CREATE TABLE `org_groups` (
  1835. `id` int(11) NOT NULL AUTO_INCREMENT,
  1836. `modified_by_id` int(11) DEFAULT NULL,
  1837. `created_at` datetime NOT NULL,
  1838. `updated_at` datetime NOT NULL,
  1839. `description` text,
  1840. `url` varchar(250) DEFAULT NULL,
  1841. `start_date` date DEFAULT NULL,
  1842. `end_date` date DEFAULT NULL,
  1843. `slug` varchar(250) NOT NULL,
  1844. `title` varchar(250) NOT NULL,
  1845. `context_id` int(11) DEFAULT NULL,
  1846. `contact_id` int(11) DEFAULT NULL,
  1847. `notes` text,
  1848. `status` varchar(250) DEFAULT NULL,
  1849. `reference_url` varchar(250) DEFAULT NULL,
  1850. `secondary_contact_id` int(11) DEFAULT NULL,
  1851. `os_state` varchar(16) NOT NULL,
  1852. PRIMARY KEY (`id`),
  1853. UNIQUE KEY `uq_org_groups` (`slug`),
  1854. UNIQUE KEY `uq_t_org_groups` (`title`),
  1855. KEY `fk_org_groups_contexts` (`context_id`),
  1856. KEY `fk_org_groups_contact` (`contact_id`),
  1857. KEY `ix_org_groups_updated_at` (`updated_at`),
  1858. KEY `fk_org_groups_secondary_contact` (`secondary_contact_id`),
  1859. CONSTRAINT `fk_org_groups_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1860. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  1861. /*!40101 SET character_set_client = @saved_cs_client */;
  1862.  
  1863. --
  1864. -- Dumping data for table `org_groups`
  1865. --
  1866.  
  1867. LOCK TABLES `org_groups` WRITE;
  1868. /*!40000 ALTER TABLE `org_groups` DISABLE KEYS */;
  1869. INSERT INTO `org_groups` VALUES (1,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-1','org-1',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-2','org-2',NULL,15,'this is a note','Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-3','org-3',NULL,15,'this is a note','Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-4','org-4',NULL,15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-5','org-5',NULL,15,'this is a note','Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-6','org-6',NULL,15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-7','org-7',NULL,15,'this is a note','In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-8','org-8',NULL,15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-9','org-9',NULL,15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','org-10','org-10',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft');
  1870. /*!40000 ALTER TABLE `org_groups` ENABLE KEYS */;
  1871. UNLOCK TABLES;
  1872.  
  1873. --
  1874. -- Table structure for table `people`
  1875. --
  1876.  
  1877. DROP TABLE IF EXISTS `people`;
  1878. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1879. /*!40101 SET character_set_client = utf8 */;
  1880. CREATE TABLE `people` (
  1881. `id` int(11) NOT NULL AUTO_INCREMENT,
  1882. `modified_by_id` int(11) DEFAULT NULL,
  1883. `created_at` datetime NOT NULL,
  1884. `updated_at` datetime NOT NULL,
  1885. `email` varchar(250) NOT NULL,
  1886. `name` varchar(250) DEFAULT NULL,
  1887. `language_id` int(11) DEFAULT NULL,
  1888. `company` varchar(250) DEFAULT NULL,
  1889. `context_id` int(11) DEFAULT NULL,
  1890. PRIMARY KEY (`id`),
  1891. UNIQUE KEY `uq_people_email` (`email`),
  1892. KEY `fk_people_contexts` (`context_id`),
  1893. KEY `ix_people_name_email` (`name`,`email`),
  1894. KEY `ix_people_updated_at` (`updated_at`),
  1895. CONSTRAINT `fk_people_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1896. ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;
  1897. /*!40101 SET character_set_client = @saved_cs_client */;
  1898.  
  1899. --
  1900. -- Dumping data for table `people`
  1901. --
  1902.  
  1903. LOCK TABLES `people` WRITE;
  1904. /*!40000 ALTER TABLE `people` DISABLE KEYS */;
  1905. INSERT INTO `people` VALUES (1,NULL,'2016-11-10 16:49:15','2016-11-10 16:49:15','user@example.com','Example User',NULL,NULL,NULL),(2,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user1@example.com','user 1',NULL,'google',NULL),(3,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user2@example.com','user 2',NULL,'google',NULL),(4,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user10@example.com','user 10',NULL,'google',NULL),(5,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user11@example.com','user 11',NULL,'google',NULL),(6,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user12@example.com','user 12',NULL,'amazon',NULL),(7,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user13@example.com','user 13',NULL,'facebook',NULL),(8,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user14@example.com','user 14',NULL,'linkedin',NULL),(9,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user15@example.com','user 15',NULL,'twitter',NULL),(10,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user16@example.com','user 16',NULL,'google',NULL),(11,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user17@example.com','user 17',NULL,'amazon',NULL),(12,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user18@example.com','user 18',NULL,'facebook',NULL),(13,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user19@example.com','user 19',NULL,'linkedin',NULL),(14,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user20@example.com','user 20',NULL,'twitter',NULL),(15,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user1@ggrc.com','Mister User 1',NULL,'google',NULL),(16,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user2@ggrc.com','Mister User 2',NULL,'google',NULL),(17,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user10@ggrc.com','Mister User 10',NULL,'google',NULL),(18,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user11@ggrc.com','Mister User 11',NULL,'google',NULL),(19,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user12@ggrc.com','Mister User 12',NULL,'google',NULL),(20,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user13@ggrc.com','Mister User 13',NULL,'google',NULL),(21,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user14@ggrc.com','Mister User 14',NULL,'google',NULL),(22,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user15@ggrc.com','Mister User 15',NULL,'google',NULL),(23,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user16@ggrc.com','Mister User 16',NULL,'google',NULL),(24,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user17@ggrc.com','Mister User 17',NULL,'google',NULL),(25,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user18@ggrc.com','Mister User 18',NULL,'google',NULL),(26,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user19@ggrc.com','Mister User 19',NULL,'google',NULL),(27,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user20@ggrc.com','Mister User 20',NULL,'google',NULL),(28,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user21@ggrc.com','Mister User 21',NULL,'google',NULL),(29,1,'2016-11-10 16:49:40','2016-11-10 16:49:40','user22@ggrc.com','Mister User 22',NULL,'google',NULL);
  1906. /*!40000 ALTER TABLE `people` ENABLE KEYS */;
  1907. UNLOCK TABLES;
  1908.  
  1909. --
  1910. -- Table structure for table `products`
  1911. --
  1912.  
  1913. DROP TABLE IF EXISTS `products`;
  1914. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1915. /*!40101 SET character_set_client = utf8 */;
  1916. CREATE TABLE `products` (
  1917. `id` int(11) NOT NULL AUTO_INCREMENT,
  1918. `modified_by_id` int(11) DEFAULT NULL,
  1919. `created_at` datetime NOT NULL,
  1920. `updated_at` datetime NOT NULL,
  1921. `description` text,
  1922. `url` varchar(250) DEFAULT NULL,
  1923. `start_date` date DEFAULT NULL,
  1924. `end_date` date DEFAULT NULL,
  1925. `slug` varchar(250) NOT NULL,
  1926. `title` varchar(250) NOT NULL,
  1927. `kind_id` int(11) DEFAULT NULL,
  1928. `version` varchar(250) DEFAULT NULL,
  1929. `context_id` int(11) DEFAULT NULL,
  1930. `contact_id` int(11) DEFAULT NULL,
  1931. `notes` text,
  1932. `status` varchar(250) DEFAULT NULL,
  1933. `reference_url` varchar(250) DEFAULT NULL,
  1934. `secondary_contact_id` int(11) DEFAULT NULL,
  1935. `os_state` varchar(16) NOT NULL,
  1936. PRIMARY KEY (`id`),
  1937. UNIQUE KEY `uq_products` (`slug`),
  1938. UNIQUE KEY `uq_t_products` (`title`),
  1939. KEY `fk_products_contexts` (`context_id`),
  1940. KEY `fk_products_contact` (`contact_id`),
  1941. KEY `ix_products_updated_at` (`updated_at`),
  1942. KEY `fk_products_secondary_contact` (`secondary_contact_id`),
  1943. CONSTRAINT `fk_products_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1944. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  1945. /*!40101 SET character_set_client = @saved_cs_client */;
  1946.  
  1947. --
  1948. -- Dumping data for table `products`
  1949. --
  1950.  
  1951. LOCK TABLES `products` WRITE;
  1952. /*!40000 ALTER TABLE `products` DISABLE KEYS */;
  1953. INSERT INTO `products` VALUES (1,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-1','prod-1',NULL,NULL,NULL,15,'this is a note','Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-2','prod-2',NULL,NULL,NULL,15,'this is a note','Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-3','prod-3',NULL,NULL,NULL,15,'this is a note','Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-4','prod-4',NULL,NULL,NULL,15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-5','prod-5',NULL,NULL,NULL,15,'this is a note','Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-6','prod-6',NULL,NULL,NULL,15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-7','prod-7',NULL,NULL,NULL,15,'this is a note','In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-8','prod-8',NULL,NULL,NULL,15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-9','prod-9',NULL,NULL,NULL,15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','prod-10','prod-10',NULL,NULL,NULL,15,'this is a note','Draft','ggrc.com',16,'Draft');
  1954. /*!40000 ALTER TABLE `products` ENABLE KEYS */;
  1955. UNLOCK TABLES;
  1956.  
  1957. --
  1958. -- Table structure for table `programs`
  1959. --
  1960.  
  1961. DROP TABLE IF EXISTS `programs`;
  1962. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1963. /*!40101 SET character_set_client = utf8 */;
  1964. CREATE TABLE `programs` (
  1965. `id` int(11) NOT NULL AUTO_INCREMENT,
  1966. `modified_by_id` int(11) DEFAULT NULL,
  1967. `created_at` datetime NOT NULL,
  1968. `updated_at` datetime NOT NULL,
  1969. `description` text,
  1970. `url` varchar(250) DEFAULT NULL,
  1971. `start_date` date DEFAULT NULL,
  1972. `end_date` date DEFAULT NULL,
  1973. `slug` varchar(250) NOT NULL,
  1974. `title` varchar(250) NOT NULL,
  1975. `kind` varchar(250) DEFAULT NULL,
  1976. `context_id` int(11) DEFAULT NULL,
  1977. `contact_id` int(11) DEFAULT NULL,
  1978. `notes` text,
  1979. `status` varchar(250) DEFAULT NULL,
  1980. `reference_url` varchar(250) DEFAULT NULL,
  1981. `secondary_contact_id` int(11) DEFAULT NULL,
  1982. `os_state` varchar(16) NOT NULL,
  1983. PRIMARY KEY (`id`),
  1984. UNIQUE KEY `uq_programs` (`slug`),
  1985. UNIQUE KEY `uq_t_programs` (`title`),
  1986. KEY `fk_programs_contexts` (`context_id`),
  1987. KEY `fk_programs_contact` (`contact_id`),
  1988. KEY `ix_programs_updated_at` (`updated_at`),
  1989. KEY `fk_programs_secondary_contact` (`secondary_contact_id`),
  1990. CONSTRAINT `fk_programs_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  1991. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  1992. /*!40101 SET character_set_client = @saved_cs_client */;
  1993.  
  1994. --
  1995. -- Dumping data for table `programs`
  1996. --
  1997.  
  1998. LOCK TABLES `programs` WRITE;
  1999. /*!40000 ALTER TABLE `programs` DISABLE KEYS */;
  2000. INSERT INTO `programs` VALUES (1,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-1','program 1',NULL,4,15,'this is a note','Draft','ggrc.com',16,'Modified'),(2,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-2','program 2',NULL,5,15,'this is a note','Final','ggrc.com',16,'Modified'),(3,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-3','program 3',NULL,6,15,'this is a note','Effective','ggrc.com',16,'Modified'),(4,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-4','program 4',NULL,7,15,'this is a note','Ineffective','ggrc.com',16,'Modified'),(5,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-5','program 5',NULL,8,15,'this is a note','Launched','ggrc.com',16,'Modified'),(6,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-6','program 6',NULL,9,15,'this is a note','Not Launched','ggrc.com',16,'Modified'),(7,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-7','program 7',NULL,10,15,'this is a note','In Scope','ggrc.com',16,'Modified'),(8,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-8','program 8',NULL,11,15,'this is a note','Not in Scope','ggrc.com',16,'Modified'),(9,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-9','program 9',NULL,12,15,'this is a note','Deprecated','ggrc.com',16,'Modified'),(10,1,'2016-11-10 16:49:43','2016-11-10 16:49:43','test','google.com','2015-07-01','2015-07-15','prog-10','program 10',NULL,13,15,'this is a note','Draft','ggrc.com',16,'Modified');
  2001. /*!40000 ALTER TABLE `programs` ENABLE KEYS */;
  2002. UNLOCK TABLES;
  2003.  
  2004. --
  2005. -- Table structure for table `projects`
  2006. --
  2007.  
  2008. DROP TABLE IF EXISTS `projects`;
  2009. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2010. /*!40101 SET character_set_client = utf8 */;
  2011. CREATE TABLE `projects` (
  2012. `id` int(11) NOT NULL AUTO_INCREMENT,
  2013. `modified_by_id` int(11) DEFAULT NULL,
  2014. `created_at` datetime NOT NULL,
  2015. `updated_at` datetime NOT NULL,
  2016. `description` text,
  2017. `url` varchar(250) DEFAULT NULL,
  2018. `start_date` date DEFAULT NULL,
  2019. `end_date` date DEFAULT NULL,
  2020. `slug` varchar(250) NOT NULL,
  2021. `title` varchar(250) NOT NULL,
  2022. `context_id` int(11) DEFAULT NULL,
  2023. `contact_id` int(11) DEFAULT NULL,
  2024. `notes` text,
  2025. `status` varchar(250) DEFAULT NULL,
  2026. `reference_url` varchar(250) DEFAULT NULL,
  2027. `secondary_contact_id` int(11) DEFAULT NULL,
  2028. `os_state` varchar(16) NOT NULL,
  2029. PRIMARY KEY (`id`),
  2030. UNIQUE KEY `uq_projects` (`slug`),
  2031. UNIQUE KEY `uq_t_projects` (`title`),
  2032. KEY `fk_projects_contexts` (`context_id`),
  2033. KEY `fk_projects_contact` (`contact_id`),
  2034. KEY `ix_projects_updated_at` (`updated_at`),
  2035. KEY `fk_projects_secondary_contact` (`secondary_contact_id`),
  2036. CONSTRAINT `fk_projects_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  2037. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  2038. /*!40101 SET character_set_client = @saved_cs_client */;
  2039.  
  2040. --
  2041. -- Dumping data for table `projects`
  2042. --
  2043.  
  2044. LOCK TABLES `projects` WRITE;
  2045. /*!40000 ALTER TABLE `projects` DISABLE KEYS */;
  2046. INSERT INTO `projects` VALUES (1,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-1','proj-1',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-2','proj-2',NULL,15,'this is a note','Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-3','proj-3',NULL,15,'this is a note','Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-4','proj-4',NULL,15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-5','proj-5',NULL,15,'this is a note','Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-6','proj-6',NULL,15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-7','proj-7',NULL,15,'this is a note','In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-8','proj-8',NULL,15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-9','proj-9',NULL,15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proj-10','proj-10',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft');
  2047. /*!40000 ALTER TABLE `projects` ENABLE KEYS */;
  2048. UNLOCK TABLES;
  2049.  
  2050. --
  2051. -- Table structure for table `relationship_attrs`
  2052. --
  2053.  
  2054. DROP TABLE IF EXISTS `relationship_attrs`;
  2055. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2056. /*!40101 SET character_set_client = utf8 */;
  2057. CREATE TABLE `relationship_attrs` (
  2058. `id` int(11) NOT NULL AUTO_INCREMENT,
  2059. `relationship_id` int(11) NOT NULL,
  2060. `attr_name` varchar(250) NOT NULL,
  2061. `attr_value` varchar(250) NOT NULL,
  2062. PRIMARY KEY (`id`),
  2063. KEY `relationship_id` (`relationship_id`),
  2064. CONSTRAINT `relationship_attrs_ibfk_1` FOREIGN KEY (`relationship_id`) REFERENCES `relationships` (`id`) ON DELETE CASCADE
  2065. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  2066. /*!40101 SET character_set_client = @saved_cs_client */;
  2067.  
  2068. --
  2069. -- Dumping data for table `relationship_attrs`
  2070. --
  2071.  
  2072. LOCK TABLES `relationship_attrs` WRITE;
  2073. /*!40000 ALTER TABLE `relationship_attrs` DISABLE KEYS */;
  2074. INSERT INTO `relationship_attrs` VALUES (1,22,'AssigneeType','Verifier,Assessor,Creator'),(2,24,'AssigneeType','Verifier,Assessor,Creator'),(3,26,'AssigneeType','Verifier,Assessor,Creator'),(4,28,'AssigneeType','Verifier,Assessor,Creator'),(5,30,'AssigneeType','Verifier,Assessor,Creator'),(6,32,'AssigneeType','Verifier,Assessor,Creator'),(7,34,'AssigneeType','Verifier,Assessor,Creator'),(8,36,'AssigneeType','Verifier,Assessor,Creator'),(9,38,'AssigneeType','Verifier,Assessor,Creator'),(10,40,'AssigneeType','Verifier,Assessor,Creator');
  2075. /*!40000 ALTER TABLE `relationship_attrs` ENABLE KEYS */;
  2076. UNLOCK TABLES;
  2077.  
  2078. --
  2079. -- Table structure for table `relationships`
  2080. --
  2081.  
  2082. DROP TABLE IF EXISTS `relationships`;
  2083. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2084. /*!40101 SET character_set_client = utf8 */;
  2085. CREATE TABLE `relationships` (
  2086. `id` int(11) NOT NULL AUTO_INCREMENT,
  2087. `modified_by_id` int(11) DEFAULT NULL,
  2088. `created_at` datetime NOT NULL,
  2089. `updated_at` datetime NOT NULL,
  2090. `source_id` int(11) NOT NULL,
  2091. `source_type` varchar(250) NOT NULL,
  2092. `destination_id` int(11) NOT NULL,
  2093. `destination_type` varchar(250) NOT NULL,
  2094. `context_id` int(11) DEFAULT NULL,
  2095. `status` varchar(250) DEFAULT NULL,
  2096. `automapping_id` int(11) DEFAULT NULL,
  2097. PRIMARY KEY (`id`),
  2098. UNIQUE KEY `uq_relationships` (`source_id`,`source_type`,`destination_id`,`destination_type`),
  2099. KEY `fk_relationships_contexts` (`context_id`),
  2100. KEY `ix_relationships_destination` (`destination_type`,`destination_id`),
  2101. KEY `ix_relationships_source` (`source_type`,`source_id`),
  2102. KEY `ix_relationships_updated_at` (`updated_at`),
  2103. KEY `relationships_automapping_parent` (`automapping_id`),
  2104. CONSTRAINT `fk_relationships_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2105. CONSTRAINT `relationships_automapping_parent` FOREIGN KEY (`automapping_id`) REFERENCES `relationships` (`id`) ON DELETE SET NULL
  2106. ) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8;
  2107. /*!40101 SET character_set_client = @saved_cs_client */;
  2108.  
  2109. --
  2110. -- Dumping data for table `relationships`
  2111. --
  2112.  
  2113. LOCK TABLES `relationships` WRITE;
  2114. /*!40000 ALTER TABLE `relationships` DISABLE KEYS */;
  2115. INSERT INTO `relationships` VALUES (1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',1,'DataAsset',NULL,'Draft',NULL),(2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',2,'AccessGroup',2,'DataAsset',NULL,'Draft',NULL),(3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',3,'AccessGroup',3,'DataAsset',NULL,'Draft',NULL),(4,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',4,'AccessGroup',4,'DataAsset',NULL,'Draft',NULL),(5,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',5,'AccessGroup',5,'DataAsset',NULL,'Draft',NULL),(6,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',6,'AccessGroup',6,'DataAsset',NULL,'Draft',NULL),(7,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',7,'AccessGroup',7,'DataAsset',NULL,'Draft',NULL),(8,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',8,'AccessGroup',8,'DataAsset',NULL,'Draft',NULL),(9,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',9,'AccessGroup',9,'DataAsset',NULL,'Draft',NULL),(10,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',10,'AccessGroup',10,'DataAsset',NULL,'Draft',NULL),(11,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',11,'Policy',NULL,'Draft',NULL),(12,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',2,'Section',12,'Policy',NULL,'Draft',NULL),(13,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',3,'Section',13,'Policy',NULL,'Draft',NULL),(14,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',4,'Section',21,'Regulation',NULL,'Draft',NULL),(15,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',5,'Section',22,'Regulation',NULL,'Draft',NULL),(16,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',6,'Section',23,'Regulation',NULL,'Draft',NULL),(17,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',7,'Section',24,'Regulation',NULL,'Draft',NULL),(18,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',8,'Section',31,'Standard',NULL,'Draft',NULL),(19,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',9,'Section',32,'Standard',NULL,'Draft',NULL),(20,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',10,'Section',33,'Standard',NULL,'Draft',NULL),(21,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',1,'Audit',NULL,'Draft',NULL),(22,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',1,'Assessment',NULL,'Draft',NULL),(23,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',2,'Assessment',2,'Audit',NULL,'Draft',NULL),(24,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',2,'Assessment',NULL,'Draft',NULL),(25,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',3,'Assessment',3,'Audit',NULL,'Draft',NULL),(26,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',3,'Assessment',NULL,'Draft',NULL),(27,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',4,'Assessment',4,'Audit',NULL,'Draft',NULL),(28,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',4,'Assessment',NULL,'Draft',NULL),(29,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',5,'Assessment',5,'Audit',NULL,'Draft',NULL),(30,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',5,'Assessment',NULL,'Draft',NULL),(31,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',6,'Assessment',6,'Audit',NULL,'Draft',NULL),(32,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',6,'Assessment',NULL,'Draft',NULL),(33,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',7,'Assessment',7,'Audit',NULL,'Draft',NULL),(34,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',7,'Assessment',NULL,'Draft',NULL),(35,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',8,'Assessment',8,'Audit',NULL,'Draft',NULL),(36,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',8,'Assessment',NULL,'Draft',NULL),(37,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',9,'Assessment',9,'Audit',NULL,'Draft',NULL),(38,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',9,'Assessment',NULL,'Draft',NULL),(39,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',10,'Assessment',10,'Audit',NULL,'Draft',NULL),(40,NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',15,'Person',10,'Assessment',NULL,'Draft',NULL);
  2116. /*!40000 ALTER TABLE `relationships` ENABLE KEYS */;
  2117. UNLOCK TABLES;
  2118.  
  2119. --
  2120. -- Table structure for table `requests`
  2121. --
  2122.  
  2123. DROP TABLE IF EXISTS `requests`;
  2124. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2125. /*!40101 SET character_set_client = utf8 */;
  2126. CREATE TABLE `requests` (
  2127. `id` int(11) NOT NULL AUTO_INCREMENT,
  2128. `request_type` enum('documentation','interview','population sample') NOT NULL,
  2129. `status` enum('Not Started','In Progress','Ready for Review','Verified','Completed') NOT NULL,
  2130. `start_date` date NOT NULL,
  2131. `end_date` date NOT NULL,
  2132. `audit_id` int(11) NOT NULL,
  2133. `gdrive_upload_path` varchar(250) DEFAULT NULL,
  2134. `created_at` datetime NOT NULL,
  2135. `modified_by_id` int(11) DEFAULT NULL,
  2136. `updated_at` datetime NOT NULL,
  2137. `context_id` int(11) DEFAULT NULL,
  2138. `test` text,
  2139. `notes` text,
  2140. `description` text,
  2141. `requestor_id` int(11) DEFAULT NULL,
  2142. `slug` varchar(250) NOT NULL,
  2143. `title` varchar(250) NOT NULL,
  2144. `audit_object_id` int(11) DEFAULT NULL,
  2145. `finished_date` datetime DEFAULT NULL,
  2146. `verified_date` datetime DEFAULT NULL,
  2147. `recipients` varchar(250) DEFAULT NULL,
  2148. `send_by_default` tinyint(1) DEFAULT NULL,
  2149. PRIMARY KEY (`id`),
  2150. UNIQUE KEY `uq_requests` (`slug`),
  2151. KEY `audit_id` (`audit_id`),
  2152. KEY `fk_requests_contexts` (`context_id`),
  2153. KEY `ix_requests_updated_at` (`updated_at`),
  2154. KEY `requests_audit_objects_ibfk` (`audit_object_id`),
  2155. CONSTRAINT `requests_audit_objects_ibfk` FOREIGN KEY (`audit_object_id`) REFERENCES `audit_objects` (`id`),
  2156. CONSTRAINT `requests_ibfk_2` FOREIGN KEY (`audit_id`) REFERENCES `audits` (`id`),
  2157. CONSTRAINT `requests_ibfk_3` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  2158. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2159. /*!40101 SET character_set_client = @saved_cs_client */;
  2160.  
  2161. --
  2162. -- Dumping data for table `requests`
  2163. --
  2164.  
  2165. LOCK TABLES `requests` WRITE;
  2166. /*!40000 ALTER TABLE `requests` DISABLE KEYS */;
  2167. /*!40000 ALTER TABLE `requests` ENABLE KEYS */;
  2168. UNLOCK TABLES;
  2169.  
  2170. --
  2171. -- Table structure for table `revisions`
  2172. --
  2173.  
  2174. DROP TABLE IF EXISTS `revisions`;
  2175. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2176. /*!40101 SET character_set_client = utf8 */;
  2177. CREATE TABLE `revisions` (
  2178. `id` int(11) NOT NULL AUTO_INCREMENT,
  2179. `resource_id` int(11) NOT NULL,
  2180. `resource_type` varchar(250) NOT NULL,
  2181. `event_id` int(11) NOT NULL,
  2182. `action` enum('created','modified','deleted') NOT NULL,
  2183. `content` text NOT NULL,
  2184. `context_id` int(11) DEFAULT NULL,
  2185. `created_at` datetime NOT NULL,
  2186. `updated_at` datetime NOT NULL,
  2187. `modified_by_id` int(11) DEFAULT NULL,
  2188. `source_type` varchar(250) DEFAULT NULL,
  2189. `source_id` int(11) DEFAULT NULL,
  2190. `destination_type` varchar(250) DEFAULT NULL,
  2191. `destination_id` int(11) DEFAULT NULL,
  2192. PRIMARY KEY (`id`),
  2193. KEY `event_id` (`event_id`),
  2194. KEY `revisions_modified_by` (`modified_by_id`),
  2195. KEY `fk_revisions_contexts` (`context_id`),
  2196. KEY `ix_revisions_updated_at` (`updated_at`),
  2197. KEY `fk_revisions_resource` (`resource_type`,`resource_id`),
  2198. KEY `fk_revisions_source` (`source_type`,`source_id`),
  2199. KEY `fk_revisions_destination` (`destination_type`,`destination_id`),
  2200. CONSTRAINT `fk_revisions_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2201. CONSTRAINT `revisions_ibfk_1` FOREIGN KEY (`event_id`) REFERENCES `events` (`id`),
  2202. CONSTRAINT `revisions_modified_by` FOREIGN KEY (`modified_by_id`) REFERENCES `people` (`id`)
  2203. ) ENGINE=InnoDB AUTO_INCREMENT=908 DEFAULT CHARSET=utf8;
  2204. /*!40101 SET character_set_client = @saved_cs_client */;
  2205.  
  2206. --
  2207. -- Dumping data for table `revisions`
  2208. --
  2209.  
  2210. LOCK TABLES `revisions` WRITE;
  2211. /*!40000 ALTER TABLE `revisions` DISABLE KEYS */;
  2212. INSERT INTO `revisions` VALUES (1,1,'Person',1,'created','{\"display_name\": \"user@example.com\", \"name\": \"Example User\", \"updated_at\": \"2016-11-10T16:49:15\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:15\", \"language_id\": null, \"custom_attributes\": [], \"id\": 1, \"email\": \"user@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": null, \"company\": null}',NULL,'2016-11-10 16:49:15','2016-11-10 16:49:15',1,NULL,NULL,NULL,NULL),(2,26,'Person',2,'created','{\"display_name\": \"user19@ggrc.com\", \"name\": \"Mister User 19\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 26, \"email\": \"user19@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(3,11,'Person',2,'created','{\"display_name\": \"user17@example.com\", \"name\": \"user 17\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 11, \"email\": \"user17@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"amazon\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(4,23,'Person',2,'created','{\"display_name\": \"user16@ggrc.com\", \"name\": \"Mister User 16\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 23, \"email\": \"user16@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(5,28,'Person',2,'created','{\"display_name\": \"user21@ggrc.com\", \"name\": \"Mister User 21\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 28, \"email\": \"user21@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(6,7,'Person',2,'created','{\"display_name\": \"user13@example.com\", \"name\": \"user 13\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 7, \"email\": \"user13@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"facebook\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(7,14,'Person',2,'created','{\"display_name\": \"user20@example.com\", \"name\": \"user 20\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 14, \"email\": \"user20@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"twitter\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(8,25,'Person',2,'created','{\"display_name\": \"user18@ggrc.com\", \"name\": \"Mister User 18\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 25, \"email\": \"user18@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(9,9,'Person',2,'created','{\"display_name\": \"user15@example.com\", \"name\": \"user 15\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 9, \"email\": \"user15@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"twitter\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(10,15,'Person',2,'created','{\"display_name\": \"user1@ggrc.com\", \"name\": \"Mister User 1\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 15, \"email\": \"user1@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(11,8,'Person',2,'created','{\"display_name\": \"user14@example.com\", \"name\": \"user 14\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 8, \"email\": \"user14@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"linkedin\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(12,27,'Person',2,'created','{\"display_name\": \"user20@ggrc.com\", \"name\": \"Mister User 20\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 27, \"email\": \"user20@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(13,5,'Person',2,'created','{\"display_name\": \"user11@example.com\", \"name\": \"user 11\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 5, \"email\": \"user11@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(14,16,'Person',2,'created','{\"display_name\": \"user2@ggrc.com\", \"name\": \"Mister User 2\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 16, \"email\": \"user2@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(15,24,'Person',2,'created','{\"display_name\": \"user17@ggrc.com\", \"name\": \"Mister User 17\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 24, \"email\": \"user17@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(16,10,'Person',2,'created','{\"display_name\": \"user16@example.com\", \"name\": \"user 16\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 10, \"email\": \"user16@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(17,4,'Person',2,'created','{\"display_name\": \"user10@example.com\", \"name\": \"user 10\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 4, \"email\": \"user10@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(18,18,'Person',2,'created','{\"display_name\": \"user11@ggrc.com\", \"name\": \"Mister User 11\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 18, \"email\": \"user11@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(19,19,'Person',2,'created','{\"display_name\": \"user12@ggrc.com\", \"name\": \"Mister User 12\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 19, \"email\": \"user12@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(20,6,'Person',2,'created','{\"display_name\": \"user12@example.com\", \"name\": \"user 12\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 6, \"email\": \"user12@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"amazon\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(21,29,'Person',2,'created','{\"display_name\": \"user22@ggrc.com\", \"name\": \"Mister User 22\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 29, \"email\": \"user22@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(22,20,'Person',2,'created','{\"display_name\": \"user13@ggrc.com\", \"name\": \"Mister User 13\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 20, \"email\": \"user13@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(23,2,'Person',2,'created','{\"display_name\": \"user1@example.com\", \"name\": \"user 1\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 2, \"email\": \"user1@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(24,3,'Person',2,'created','{\"display_name\": \"user2@example.com\", \"name\": \"user 2\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 3, \"email\": \"user2@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(25,12,'Person',2,'created','{\"display_name\": \"user18@example.com\", \"name\": \"user 18\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 12, \"email\": \"user18@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"facebook\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(26,21,'Person',2,'created','{\"display_name\": \"user14@ggrc.com\", \"name\": \"Mister User 14\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 21, \"email\": \"user14@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(27,22,'Person',2,'created','{\"display_name\": \"user15@ggrc.com\", \"name\": \"Mister User 15\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 22, \"email\": \"user15@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(28,17,'Person',2,'created','{\"display_name\": \"user10@ggrc.com\", \"name\": \"Mister User 10\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 17, \"email\": \"user10@ggrc.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"google\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(29,13,'Person',2,'created','{\"display_name\": \"user19@example.com\", \"name\": \"user 19\", \"updated_at\": \"2016-11-10T16:49:40\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"language_id\": null, \"custom_attributes\": [], \"id\": 13, \"email\": \"user19@example.com\", \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"company\": \"linkedin\"}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(30,10,'Issue',3,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-10\", \"display_name\": \"issue 10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(31,1,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 1}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(32,2,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 2}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(33,6,'Issue',3,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-6\", \"display_name\": \"issue 6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(34,1,'Issue',3,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-1\", \"display_name\": \"issue 1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(35,9,'Issue',3,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-9\", \"display_name\": \"issue 9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(36,4,'Issue',3,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-4\", \"display_name\": \"issue 4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(37,7,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 7}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(38,4,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 4}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(39,10,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 10}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(40,9,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 9}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(41,8,'Issue',3,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-8\", \"display_name\": \"issue 8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(42,8,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 8}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(43,6,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 6}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(44,7,'Issue',3,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-7\", \"display_name\": \"issue 7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(45,5,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 5}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(46,3,'Issue',3,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-3\", \"display_name\": \"issue 3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(47,3,'ObjectOwner',3,'created','{\"status\": \"Draft\", \"display_name\": \"issue 3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Issue\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 3}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(48,2,'Issue',3,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-2\", \"display_name\": \"issue 2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(49,5,'Issue',3,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:40\", \"slug\": \"iss-5\", \"display_name\": \"issue 5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"issue 5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"test_plan\": \"plan\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:40','2016-11-10 16:49:40',1,NULL,NULL,NULL,NULL),(50,2,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 2, \"display_name\": \"ctr-2\", \"title\": \"ctr-2\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-2\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(51,16,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 16}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(52,10,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 10, \"display_name\": \"ctr-10\", \"title\": \"ctr-10\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-10\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(53,5,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 5, \"display_name\": \"ctr-5\", \"title\": \"ctr-5\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-5\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(54,15,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 15}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(55,12,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 12}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(56,20,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 20}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(57,13,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 13}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(58,8,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 8, \"display_name\": \"ctr-8\", \"title\": \"ctr-8\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-8\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(59,14,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 14}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(60,19,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 19}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(61,3,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 3, \"display_name\": \"ctr-3\", \"title\": \"ctr-3\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-3\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(62,18,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 18}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(63,7,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 7, \"display_name\": \"ctr-7\", \"title\": \"ctr-7\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-7\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(64,9,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 9, \"display_name\": \"ctr-9\", \"title\": \"ctr-9\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-9\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(65,17,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 17}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(66,11,'ObjectOwner',4,'created','{\"status\": \"Draft\", \"display_name\": \"ctr-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:40\", \"updated_at\": \"2016-11-10T16:49:40\", \"ownable_type\": \"Contract\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 11}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(67,4,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 4, \"display_name\": \"ctr-4\", \"title\": \"ctr-4\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-4\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(68,1,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 1, \"display_name\": \"ctr-1\", \"title\": \"ctr-1\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-1\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(69,6,'Contract',4,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:40\", \"contact_id\": 15, \"meta_kind\": \"Contract\", \"id\": 6, \"display_name\": \"ctr-6\", \"title\": \"ctr-6\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"ctr-6\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:40\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(70,22,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 22}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(71,29,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 29}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(72,8,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 8, \"display_name\": \"cl-8\", \"title\": \"cl-8\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-8\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(73,25,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 25}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(74,24,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 24}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(75,10,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 10, \"display_name\": \"cl-10\", \"title\": \"cl-10\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-10\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(76,21,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 21}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(77,4,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 4, \"display_name\": \"cl-4\", \"title\": \"cl-4\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-4\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(78,26,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 26}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(79,7,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 7, \"display_name\": \"cl-7\", \"title\": \"cl-7\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-7\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(80,23,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 23}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(81,3,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 3, \"display_name\": \"cl-3\", \"title\": \"cl-3\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-3\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(82,27,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 27}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(83,2,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 2, \"display_name\": \"cl-2\", \"title\": \"cl-2\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-2\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(84,30,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 30}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(85,28,'ObjectOwner',5,'created','{\"status\": \"Draft\", \"display_name\": \"cl-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Clause\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 28}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(86,1,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 1, \"display_name\": \"cl-1\", \"title\": \"cl-1\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-1\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(87,6,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 6, \"display_name\": \"cl-6\", \"title\": \"cl-6\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-6\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(88,5,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 5, \"display_name\": \"cl-5\", \"title\": \"cl-5\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-5\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(89,9,'Clause',5,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"id\": 9, \"display_name\": \"cl-9\", \"title\": \"cl-9\", \"na\": false, \"custom_attributes\": [], \"parent_id\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"cl-9\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(90,32,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 32}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(91,40,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 40}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(92,5,'Objective',6,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-5\", \"description\": \"test\", \"title\": \"obj-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-5\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(93,10,'Objective',6,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-10\", \"description\": \"test\", \"title\": \"obj-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-10\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(94,35,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 35}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(95,3,'Objective',6,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-3\", \"description\": \"test\", \"title\": \"obj-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-3\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(96,33,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 33}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(97,39,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 39}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(98,8,'Objective',6,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-8\", \"description\": \"test\", \"title\": \"obj-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-8\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(99,34,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 34}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(100,7,'Objective',6,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-7\", \"description\": \"test\", \"title\": \"obj-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-7\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(101,31,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 31}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(102,36,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 36}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(103,37,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 37}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(104,1,'Objective',6,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-1\", \"description\": \"test\", \"title\": \"obj-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-1\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(105,9,'Objective',6,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-9\", \"description\": \"test\", \"title\": \"obj-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-9\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(106,38,'ObjectOwner',6,'created','{\"status\": \"Draft\", \"display_name\": \"obj-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Objective\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 38}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(107,6,'Objective',6,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-6\", \"description\": \"test\", \"title\": \"obj-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-6\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(108,4,'Objective',6,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-4\", \"description\": \"test\", \"title\": \"obj-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-4\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(109,2,'Objective',6,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:41\", \"display_name\": \"obj-2\", \"description\": \"test\", \"title\": \"obj-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"slug\": \"obj-2\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(110,9,'OrgGroup',7,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-9\", \"display_name\": \"org-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(111,46,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 46}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(112,50,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 50}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(113,47,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 47}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(114,7,'OrgGroup',7,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-7\", \"display_name\": \"org-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(115,44,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 44}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(116,10,'OrgGroup',7,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-10\", \"display_name\": \"org-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(117,4,'OrgGroup',7,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-4\", \"display_name\": \"org-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(118,48,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 48}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(119,6,'OrgGroup',7,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-6\", \"display_name\": \"org-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(120,41,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 41}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(121,45,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 45}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(122,49,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 49}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(123,43,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 43}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(124,2,'OrgGroup',7,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-2\", \"display_name\": \"org-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(125,1,'OrgGroup',7,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-1\", \"display_name\": \"org-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(126,3,'OrgGroup',7,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-3\", \"display_name\": \"org-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(127,8,'OrgGroup',7,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-8\", \"display_name\": \"org-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(128,5,'OrgGroup',7,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"org-5\", \"display_name\": \"org-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"org-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(129,42,'ObjectOwner',7,'created','{\"status\": \"Draft\", \"display_name\": \"org-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"OrgGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 42}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(130,5,'Vendor',8,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-5\", \"display_name\": \"ven-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(131,51,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 51}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(132,58,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 58}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(133,4,'Vendor',8,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-4\", \"display_name\": \"ven-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(134,10,'Vendor',8,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-10\", \"display_name\": \"ven-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(135,54,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 54}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(136,60,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 60}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(137,52,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 52}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(138,3,'Vendor',8,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-3\", \"display_name\": \"ven-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(139,56,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 56}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(140,9,'Vendor',8,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-9\", \"display_name\": \"ven-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(141,59,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 59}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(142,7,'Vendor',8,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-7\", \"display_name\": \"ven-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(143,6,'Vendor',8,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-6\", \"display_name\": \"ven-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(144,55,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 55}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(145,53,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 53}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(146,8,'Vendor',8,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-8\", \"display_name\": \"ven-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(147,2,'Vendor',8,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-2\", \"display_name\": \"ven-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(148,1,'Vendor',8,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:41\", \"slug\": \"ven-1\", \"display_name\": \"ven-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ven-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(149,57,'ObjectOwner',8,'created','{\"status\": \"Draft\", \"display_name\": \"ven-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"Vendor\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 57}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(150,64,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 64}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(151,68,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 68}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(152,65,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 65}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(153,2,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 106, \"id\": 2, \"display_name\": \"sys-2\", \"title\": \"sys-2\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-2\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(154,66,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 66}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(155,10,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 135, \"id\": 10, \"display_name\": \"sys-10\", \"title\": \"sys-10\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-10\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(156,61,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 61}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(157,7,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 106, \"id\": 7, \"display_name\": \"sys-7\", \"title\": \"sys-7\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-7\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(158,1,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 107, \"id\": 1, \"display_name\": \"sys-1\", \"title\": \"sys-1\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-1\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(159,70,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 70}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(160,62,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 62}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(161,4,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 136, \"id\": 4, \"display_name\": \"sys-4\", \"title\": \"sys-4\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-4\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(162,6,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 107, \"id\": 6, \"display_name\": \"sys-6\", \"title\": \"sys-6\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-6\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(163,63,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 63}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(164,3,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 137, \"id\": 3, \"display_name\": \"sys-3\", \"title\": \"sys-3\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-3\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(165,67,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 67}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(166,69,'ObjectOwner',9,'created','{\"status\": \"Draft\", \"display_name\": \"sys-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:41\", \"updated_at\": \"2016-11-10T16:49:41\", \"ownable_type\": \"System\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 69}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(167,5,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 135, \"id\": 5, \"display_name\": \"sys-5\", \"title\": \"sys-5\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-5\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(168,9,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 136, \"id\": 9, \"display_name\": \"sys-9\", \"title\": \"sys-9\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-9\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(169,8,'System',9,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:41\", \"contact_id\": 15, \"network_zone_id\": 137, \"id\": 8, \"display_name\": \"sys-8\", \"title\": \"sys-8\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"sys-8\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:41\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": false, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:41','2016-11-10 16:49:41',1,NULL,NULL,NULL,NULL),(170,80,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 20, \"id\": 80}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(171,12,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 106, \"id\": 12, \"display_name\": \"proc-2\", \"title\": \"proc-2\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-2\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(172,71,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 11, \"id\": 71}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(173,79,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 19, \"id\": 79}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(174,13,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 137, \"id\": 13, \"display_name\": \"proc-3\", \"title\": \"proc-3\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-3\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(175,72,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 12, \"id\": 72}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(176,14,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 136, \"id\": 14, \"display_name\": \"proc-4\", \"title\": \"proc-4\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-4\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(177,16,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 107, \"id\": 16, \"display_name\": \"proc-6\", \"title\": \"proc-6\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-6\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(178,73,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 13, \"id\": 73}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(179,20,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 135, \"id\": 20, \"display_name\": \"proc-10\", \"title\": \"proc-10\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-10\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(180,11,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 107, \"id\": 11, \"display_name\": \"proc-1\", \"title\": \"proc-1\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-1\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(181,19,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 136, \"id\": 19, \"display_name\": \"proc-9\", \"title\": \"proc-9\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-9\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(182,15,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 135, \"id\": 15, \"display_name\": \"proc-5\", \"title\": \"proc-5\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-5\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(183,18,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 137, \"id\": 18, \"display_name\": \"proc-8\", \"title\": \"proc-8\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-8\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(184,77,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 17, \"id\": 77}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(185,76,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 16, \"id\": 76}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(186,74,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 14, \"id\": 74}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(187,17,'Process',10,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"network_zone_id\": 106, \"id\": 17, \"display_name\": \"proc-7\", \"title\": \"proc-7\", \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"infrastructure\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"proc-7\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"is_biz_process\": true, \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(188,75,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 15, \"id\": 75}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(189,78,'ObjectOwner',10,'created','{\"status\": \"Draft\", \"display_name\": \"proc-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Process\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 18, \"id\": 78}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(190,1,'DataAsset',11,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-1\", \"display_name\": \"da-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(191,2,'DataAsset',11,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-2\", \"display_name\": \"da-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(192,85,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 85}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(193,87,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 87}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(194,6,'DataAsset',11,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-6\", \"display_name\": \"da-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(195,90,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 90}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(196,3,'DataAsset',11,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-3\", \"display_name\": \"da-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(197,83,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 83}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(198,84,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 84}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(199,9,'DataAsset',11,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-9\", \"display_name\": \"da-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(200,4,'DataAsset',11,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-4\", \"display_name\": \"da-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(201,10,'DataAsset',11,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-10\", \"display_name\": \"da-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(202,81,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 81}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(203,8,'DataAsset',11,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-8\", \"display_name\": \"da-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(204,86,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 86}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(205,7,'DataAsset',11,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-7\", \"display_name\": \"da-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(206,5,'DataAsset',11,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"da-5\", \"display_name\": \"da-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"da-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(207,82,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 82}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(208,89,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 89}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(209,88,'ObjectOwner',11,'created','{\"status\": \"Draft\", \"display_name\": \"da-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"DataAsset\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 88}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(210,100,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 100}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(211,2,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 2, \"display_name\": \"prod-2\", \"title\": \"prod-2\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-2\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(212,6,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 6, \"display_name\": \"prod-6\", \"title\": \"prod-6\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-6\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(213,7,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 7, \"display_name\": \"prod-7\", \"title\": \"prod-7\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-7\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(214,1,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 1, \"display_name\": \"prod-1\", \"title\": \"prod-1\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-1\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(215,98,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 98}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(216,4,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 4, \"display_name\": \"prod-4\", \"title\": \"prod-4\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-4\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(217,9,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 9, \"display_name\": \"prod-9\", \"title\": \"prod-9\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-9\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(218,92,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 92}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(219,96,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 96}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(220,94,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 94}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(221,95,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 95}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(222,93,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 93}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(223,8,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 8, \"display_name\": \"prod-8\", \"title\": \"prod-8\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-8\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(224,3,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 3, \"display_name\": \"prod-3\", \"title\": \"prod-3\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-3\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(225,99,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 99}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(226,97,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 97}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(227,10,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 10, \"display_name\": \"prod-10\", \"title\": \"prod-10\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-10\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(228,91,'ObjectOwner',12,'created','{\"status\": \"Draft\", \"display_name\": \"prod-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Product\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 91}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(229,5,'Product',12,'created','{\"context_id\": null, \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"id\": 5, \"display_name\": \"prod-5\", \"title\": \"prod-5\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"prod-5\", \"url\": \"google.com\", \"created_at\": \"2016-11-10T16:49:42\", \"reference_url\": \"ggrc.com\", \"custom_attribute_definitions\": [], \"notes\": \"this is a note\"}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(230,5,'Project',13,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-5\", \"display_name\": \"proj-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(231,9,'Project',13,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-9\", \"display_name\": \"proj-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(232,10,'Project',13,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-10\", \"display_name\": \"proj-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(233,1,'Project',13,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-1\", \"display_name\": \"proj-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(234,104,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 104}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(235,4,'Project',13,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-4\", \"display_name\": \"proj-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(236,109,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 109}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(237,110,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 110}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(238,2,'Project',13,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-2\", \"display_name\": \"proj-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(239,106,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 106}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(240,3,'Project',13,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-3\", \"display_name\": \"proj-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(241,8,'Project',13,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-8\", \"display_name\": \"proj-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(242,105,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 105}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(243,108,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 108}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(244,102,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 102}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(245,107,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 107}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(246,103,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 103}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(247,6,'Project',13,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-6\", \"display_name\": \"proj-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(248,7,'Project',13,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"proj-7\", \"display_name\": \"proj-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"proj-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(249,101,'ObjectOwner',13,'created','{\"status\": \"Draft\", \"display_name\": \"proj-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Project\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 101}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(250,7,'Facility',14,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-7\", \"display_name\": \"fac-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(251,111,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 111}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(252,112,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 112}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(253,6,'Facility',14,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-6\", \"display_name\": \"fac-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(254,4,'Facility',14,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-4\", \"display_name\": \"fac-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(255,115,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 115}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(256,9,'Facility',14,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-9\", \"display_name\": \"fac-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(257,116,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 116}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(258,114,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 114}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(259,117,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 117}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(260,120,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 120}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(261,1,'Facility',14,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-1\", \"display_name\": \"fac-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(262,119,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 119}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(263,5,'Facility',14,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-5\", \"display_name\": \"fac-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(264,10,'Facility',14,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-10\", \"display_name\": \"fac-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(265,113,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 113}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(266,8,'Facility',14,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-8\", \"display_name\": \"fac-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(267,2,'Facility',14,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-2\", \"display_name\": \"fac-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(268,3,'Facility',14,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"fac-3\", \"display_name\": \"fac-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"fac-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(269,118,'ObjectOwner',14,'created','{\"status\": \"Draft\", \"display_name\": \"fac-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Facility\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 118}',NULL,'2016-11-10 16:49:42','2016-11-10 16:49:42',1,NULL,NULL,NULL,NULL),(270,126,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 126}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(271,122,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 122}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(272,121,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 121}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(273,4,'Market',15,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-4\", \"display_name\": \"mkt-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(274,128,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 128}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(275,127,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 127}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(276,6,'Market',15,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-6\", \"display_name\": \"mkt-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(277,5,'Market',15,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-5\", \"display_name\": \"mkt-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(278,123,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 123}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(279,130,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 130}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(280,7,'Market',15,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-7\", \"display_name\": \"mkt-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(281,124,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 124}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(282,9,'Market',15,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-9\", \"display_name\": \"mkt-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(283,125,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 125}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(284,2,'Market',15,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-2\", \"display_name\": \"mkt-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(285,1,'Market',15,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-1\", \"display_name\": \"mkt-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(286,3,'Market',15,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-3\", \"display_name\": \"mkt-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(287,129,'ObjectOwner',15,'created','{\"status\": \"Draft\", \"display_name\": \"mkt-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:42\", \"updated_at\": \"2016-11-10T16:49:42\", \"ownable_type\": \"Market\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 129}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(288,8,'Market',15,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-8\", \"display_name\": \"mkt-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(289,10,'Market',15,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:42\", \"slug\": \"mkt-10\", \"display_name\": \"mkt-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"mkt-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:42\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(290,9,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-9\", \"display_name\": \"ra-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(291,134,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 134}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(292,137,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"rra-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 137}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(293,2,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-2\", \"display_name\": \"ra-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(294,140,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 140}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(295,132,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 132}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(296,5,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-5\", \"display_name\": \"ra-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(297,135,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 135}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(298,6,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-6\", \"display_name\": \"ra-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(299,138,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 138}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(300,136,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 136}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(301,10,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-10\", \"display_name\": \"ra-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(302,7,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"rra-7\", \"display_name\": \"rra-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"rra-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(303,1,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-1\", \"display_name\": \"ra-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(304,131,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 131}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(305,4,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-4\", \"display_name\": \"ra-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(306,8,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-8\", \"display_name\": \"ra-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(307,133,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 133}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(308,139,'ObjectOwner',16,'created','{\"status\": \"Draft\", \"display_name\": \"ra-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"Risk\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 139}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(309,3,'Risk',16,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ra-3\", \"display_name\": \"ra-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ra-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": null, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": null, \"url\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(310,6,'AccessGroup',17,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-6\", \"display_name\": \"ag-6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-6\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(311,3,'AccessGroup',17,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-3\", \"display_name\": \"ag-3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-3\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(312,5,'AccessGroup',17,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-5\", \"display_name\": \"ag-5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-5\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(313,149,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 149}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(314,142,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 142}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(315,147,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 147}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(316,9,'AccessGroup',17,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-9\", \"display_name\": \"ag-9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-9\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(317,143,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 143}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(318,8,'AccessGroup',17,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-8\", \"display_name\": \"ag-8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-8\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(319,145,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 145}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(320,10,'AccessGroup',17,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-10\", \"display_name\": \"ag-10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-10\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(321,148,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 148}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(322,7,'AccessGroup',17,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-7\", \"display_name\": \"ag-7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-7\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(323,144,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 144}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(324,146,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 146}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(325,4,'AccessGroup',17,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-4\", \"display_name\": \"ag-4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-4\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(326,2,'AccessGroup',17,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-2\", \"display_name\": \"ag-2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-2\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(327,141,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 141}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(328,1,'AccessGroup',17,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"slug\": \"ag-1\", \"display_name\": \"ag-1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"ag-1\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(329,150,'ObjectOwner',17,'created','{\"status\": \"Draft\", \"display_name\": \"ag-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"ownable_type\": \"AccessGroup\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 150}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(330,3,'Context',18,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(331,6,'ContextImplication',18,'created','{\"source_context_id\": 6, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.571266 -> Default Context\", \"id\": 6}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(332,3,'Program',18,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 3\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 3\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 6, \"slug\": \"prog-3\", \"id\": 3}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(333,14,'ContextImplication',18,'created','{\"source_context_id\": 10, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.652331 -> Default Context\", \"id\": 14}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(334,7,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.589301\", \"name\": \"Program Context 2016-11-10 16:49:43.589301\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 7, \"related_object_id\": 4, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(335,2,'Program',18,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 2\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 2\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 5, \"slug\": \"prog-2\", \"id\": 2}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(336,10,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 10\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 10}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(337,9,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.631912\", \"name\": \"Program Context 2016-11-10 16:49:43.631912\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 9, \"related_object_id\": 6, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(338,17,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 11, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.676143\", \"id\": 17}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(339,16,'ContextImplication',18,'created','{\"source_context_id\": 11, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.676143 -> Default Context\", \"id\": 16}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(340,10,'ContextImplication',18,'created','{\"source_context_id\": 8, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.609420 -> Default Context\", \"id\": 10}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(341,6,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 6\", \"context_id\": 9, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 6}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(342,5,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 5\", \"context_id\": 8, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 5}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(343,21,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.718837\", \"id\": 21}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(344,7,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 6, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.571266\", \"id\": 7}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(345,18,'ContextImplication',18,'created','{\"source_context_id\": 12, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.698896 -> Default Context\", \"id\": 18}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(346,2,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 2\", \"context_id\": 5, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 2}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(347,9,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 9\", \"context_id\": 12, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 9}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(348,4,'ContextImplication',18,'created','{\"source_context_id\": 5, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.546409 -> Default Context\", \"id\": 4}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(349,19,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 12, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.698896\", \"id\": 19}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(350,20,'ContextImplication',18,'created','{\"source_context_id\": 13, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.718837 -> Default Context\", \"id\": 20}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(351,8,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.609420\", \"name\": \"Program Context 2016-11-10 16:49:43.609420\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 8, \"related_object_id\": 5, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(352,9,'Program',18,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 9\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 9\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 12, \"slug\": \"prog-9\", \"id\": 9}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(353,2,'ContextImplication',18,'created','{\"source_context_id\": 4, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.513055 -> Default Context\", \"id\": 2}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(354,3,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 3\", \"context_id\": 6, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 3}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(355,13,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 9, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.631912\", \"id\": 13}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(356,11,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 8, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.609420\", \"id\": 11}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(357,3,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 4, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.513055\", \"id\": 3}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(358,8,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 8\", \"context_id\": 11, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 8}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(359,5,'Program',18,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 5\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 5\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 8, \"slug\": \"prog-5\", \"id\": 5}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(360,6,'Program',18,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 6\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 6\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 9, \"slug\": \"prog-6\", \"id\": 6}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(361,10,'Program',18,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 10\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 10\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 13, \"slug\": \"prog-10\", \"id\": 10}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(362,10,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.652331\", \"name\": \"Program Context 2016-11-10 16:49:43.652331\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 10, \"related_object_id\": 7, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(363,8,'Program',18,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 8\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 8\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 11, \"slug\": \"prog-8\", \"id\": 8}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(364,15,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 10, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.652331\", \"id\": 15}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(365,6,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.571266\", \"name\": \"Program Context 2016-11-10 16:49:43.571266\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 6, \"related_object_id\": 3, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(366,4,'Program',18,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 4\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 4\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 7, \"slug\": \"prog-4\", \"id\": 4}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(367,7,'Program',18,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 7\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 7\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 10, \"slug\": \"prog-7\", \"id\": 7}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(368,8,'ContextImplication',18,'created','{\"source_context_id\": 7, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.589301 -> Default Context\", \"id\": 8}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(369,13,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.718837\", \"name\": \"Program Context 2016-11-10 16:49:43.718837\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 13, \"related_object_id\": 10, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(370,5,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 5, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.546409\", \"id\": 5}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(371,12,'ContextImplication',18,'created','{\"source_context_id\": 9, \"source_context_scope\": \"Program\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.631912 -> Default Context\", \"id\": 12}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(372,4,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.513055\", \"name\": \"Program Context 2016-11-10 16:49:43.513055\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 4, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(373,7,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 7\", \"context_id\": 10, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 7}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(374,12,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.698896\", \"name\": \"Program Context 2016-11-10 16:49:43.698896\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 12, \"related_object_id\": 9, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(375,5,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.546409\", \"name\": \"Program Context 2016-11-10 16:49:43.546409\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 5, \"related_object_id\": 2, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(376,11,'Context',18,'created','{\"display_name\": \"Program Context 2016-11-10 16:49:43.676143\", \"name\": \"Program Context 2016-11-10 16:49:43.676143\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Program\", \"modified_by_id\": 1, \"id\": 11, \"related_object_id\": 8, \"description\": \"\"}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(377,9,'ContextImplication',18,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 7, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Program Context 2016-11-10 16:49:43.589301\", \"id\": 9}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(378,1,'Program',18,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:43\", \"kind\": null, \"display_name\": \"program 1\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"title\": \"program 1\", \"os_state\": \"Modified\", \"secondary_contact_id\": 16, \"notes\": \"this is a note\", \"updated_at\": \"2016-11-10T16:49:43\", \"contact_id\": 15, \"start_date\": \"2015-07-01T00:00:00\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 4, \"slug\": \"prog-1\", \"id\": 1}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(379,4,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 4\", \"context_id\": 7, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 4}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(380,1,'UserRole',18,'created','{\"display_name\": \"user@example.com <-> ProgramOwner in program 1\", \"context_id\": 4, \"created_at\": \"2016-11-10T16:49:43\", \"updated_at\": \"2016-11-10T16:49:43\", \"role_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 1}',NULL,'2016-11-10 16:49:43','2016-11-10 16:49:43',1,NULL,NULL,NULL,NULL),(381,3,'Context',19,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:43\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(382,17,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.293865\", \"name\": \"Audit Context 2016-11-10 16:49:44.293865\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 17, \"related_object_id\": 4, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(383,16,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.280432\", \"name\": \"Audit Context 2016-11-10 16:49:44.280432\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 16, \"related_object_id\": 3, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(384,49,'ContextImplication',19,'created','{\"source_context_id\": 13, \"source_context_scope\": \"Program\", \"context_id\": 23, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.718837 -> Audit Context 2016-11-10 16:49:44.385179\", \"id\": 49}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(385,44,'ContextImplication',19,'created','{\"source_context_id\": 21, \"source_context_scope\": \"Audit\", \"context_id\": 11, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.354531 -> Program Context 2016-11-10 16:49:43.676143\", \"id\": 44}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(386,23,'ContextImplication',19,'created','{\"source_context_id\": 14, \"source_context_scope\": \"Audit\", \"context_id\": 4, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.251823 -> Program Context 2016-11-10 16:49:43.513055\", \"id\": 23}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(387,22,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.369071\", \"name\": \"Audit Context 2016-11-10 16:49:44.369071\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 22, \"related_object_id\": 9, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(388,51,'ContextImplication',19,'created','{\"source_context_id\": 23, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.385179 -> Default Context\", \"id\": 51}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(389,32,'ContextImplication',19,'created','{\"source_context_id\": 17, \"source_context_scope\": \"Audit\", \"context_id\": 7, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.293865 -> Program Context 2016-11-10 16:49:43.589301\", \"id\": 32}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(390,28,'ContextImplication',19,'created','{\"source_context_id\": 6, \"source_context_scope\": \"Program\", \"context_id\": 16, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.571266 -> Audit Context 2016-11-10 16:49:44.280432\", \"id\": 28}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(391,35,'ContextImplication',19,'created','{\"source_context_id\": 18, \"source_context_scope\": \"Audit\", \"context_id\": 8, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.306725 -> Program Context 2016-11-10 16:49:43.609420\", \"id\": 35}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(392,24,'ContextImplication',19,'created','{\"source_context_id\": 14, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.251823 -> Default Context\", \"id\": 24}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(393,6,'Audit',19,'created','{\"context_id\": 19, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 6, \"display_name\": \"Aud-6\", \"title\": \"Aud-6\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 6, \"report_end_date\": null, \"slug\": \"Aud-6\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(394,10,'Audit',19,'created','{\"context_id\": 23, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 10, \"display_name\": \"Aud-10\", \"title\": \"Aud-10\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 10, \"report_end_date\": null, \"slug\": \"Aud-10\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(395,34,'ContextImplication',19,'created','{\"source_context_id\": 8, \"source_context_scope\": \"Program\", \"context_id\": 18, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.609420 -> Audit Context 2016-11-10 16:49:44.306725\", \"id\": 34}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(396,21,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.354531\", \"name\": \"Audit Context 2016-11-10 16:49:44.354531\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 21, \"related_object_id\": 8, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(397,18,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.306725\", \"name\": \"Audit Context 2016-11-10 16:49:44.306725\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 18, \"related_object_id\": 5, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(398,7,'Audit',19,'created','{\"context_id\": 20, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 7, \"display_name\": \"Aud-7\", \"title\": \"Aud-7\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 7, \"report_end_date\": null, \"slug\": \"Aud-7\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(399,22,'ContextImplication',19,'created','{\"source_context_id\": 4, \"source_context_scope\": \"Program\", \"context_id\": 14, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.513055 -> Audit Context 2016-11-10 16:49:44.251823\", \"id\": 22}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(400,23,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.385179\", \"name\": \"Audit Context 2016-11-10 16:49:44.385179\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 23, \"related_object_id\": 10, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(401,37,'ContextImplication',19,'created','{\"source_context_id\": 9, \"source_context_scope\": \"Program\", \"context_id\": 19, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.631912 -> Audit Context 2016-11-10 16:49:44.321025\", \"id\": 37}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(402,29,'ContextImplication',19,'created','{\"source_context_id\": 16, \"source_context_scope\": \"Audit\", \"context_id\": 6, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.280432 -> Program Context 2016-11-10 16:49:43.571266\", \"id\": 29}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(403,41,'ContextImplication',19,'created','{\"source_context_id\": 20, \"source_context_scope\": \"Audit\", \"context_id\": 10, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.336996 -> Program Context 2016-11-10 16:49:43.652331\", \"id\": 41}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(404,14,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.251823\", \"name\": \"Audit Context 2016-11-10 16:49:44.251823\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 14, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(405,45,'ContextImplication',19,'created','{\"source_context_id\": 21, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.354531 -> Default Context\", \"id\": 45}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(406,36,'ContextImplication',19,'created','{\"source_context_id\": 18, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.306725 -> Default Context\", \"id\": 36}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(407,46,'ContextImplication',19,'created','{\"source_context_id\": 12, \"source_context_scope\": \"Program\", \"context_id\": 22, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.698896 -> Audit Context 2016-11-10 16:49:44.369071\", \"id\": 46}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(408,20,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.336996\", \"name\": \"Audit Context 2016-11-10 16:49:44.336996\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 20, \"related_object_id\": 7, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(409,48,'ContextImplication',19,'created','{\"source_context_id\": 22, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.369071 -> Default Context\", \"id\": 48}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(410,47,'ContextImplication',19,'created','{\"source_context_id\": 22, \"source_context_scope\": \"Audit\", \"context_id\": 12, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.369071 -> Program Context 2016-11-10 16:49:43.698896\", \"id\": 47}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(411,4,'Audit',19,'created','{\"context_id\": 17, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 4, \"display_name\": \"Aud-4\", \"title\": \"Aud-4\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 4, \"report_end_date\": null, \"slug\": \"Aud-4\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(412,1,'Audit',19,'created','{\"context_id\": 14, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 1, \"display_name\": \"Aud-1\", \"title\": \"Aud-1\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 1, \"report_end_date\": null, \"slug\": \"Aud-1\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(413,42,'ContextImplication',19,'created','{\"source_context_id\": 20, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.336996 -> Default Context\", \"id\": 42}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(414,8,'Audit',19,'created','{\"context_id\": 21, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 8, \"display_name\": \"Aud-8\", \"title\": \"Aud-8\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 8, \"report_end_date\": null, \"slug\": \"Aud-8\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(415,5,'Audit',19,'created','{\"context_id\": 18, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 5, \"display_name\": \"Aud-5\", \"title\": \"Aud-5\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 5, \"report_end_date\": null, \"slug\": \"Aud-5\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(416,3,'Audit',19,'created','{\"context_id\": 16, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 3, \"display_name\": \"Aud-3\", \"title\": \"Aud-3\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 3, \"report_end_date\": null, \"slug\": \"Aud-3\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(417,43,'ContextImplication',19,'created','{\"source_context_id\": 11, \"source_context_scope\": \"Program\", \"context_id\": 21, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.676143 -> Audit Context 2016-11-10 16:49:44.354531\", \"id\": 43}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(418,25,'ContextImplication',19,'created','{\"source_context_id\": 5, \"source_context_scope\": \"Program\", \"context_id\": 15, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.546409 -> Audit Context 2016-11-10 16:49:44.266200\", \"id\": 25}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(419,26,'ContextImplication',19,'created','{\"source_context_id\": 15, \"source_context_scope\": \"Audit\", \"context_id\": 5, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.266200 -> Program Context 2016-11-10 16:49:43.546409\", \"id\": 26}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(420,31,'ContextImplication',19,'created','{\"source_context_id\": 7, \"source_context_scope\": \"Program\", \"context_id\": 17, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.589301 -> Audit Context 2016-11-10 16:49:44.293865\", \"id\": 31}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(421,33,'ContextImplication',19,'created','{\"source_context_id\": 17, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.293865 -> Default Context\", \"id\": 33}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(422,50,'ContextImplication',19,'created','{\"source_context_id\": 23, \"source_context_scope\": \"Audit\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.385179 -> Program Context 2016-11-10 16:49:43.718837\", \"id\": 50}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(423,39,'ContextImplication',19,'created','{\"source_context_id\": 19, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.321025 -> Default Context\", \"id\": 39}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(424,27,'ContextImplication',19,'created','{\"source_context_id\": 15, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.266200 -> Default Context\", \"id\": 27}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(425,15,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.266200\", \"name\": \"Audit Context 2016-11-10 16:49:44.266200\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 15, \"related_object_id\": 2, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(426,38,'ContextImplication',19,'created','{\"source_context_id\": 19, \"source_context_scope\": \"Audit\", \"context_id\": 9, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Program\", \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.321025 -> Program Context 2016-11-10 16:49:43.631912\", \"id\": 38}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(427,19,'Context',19,'created','{\"display_name\": \"Audit Context 2016-11-10 16:49:44.321025\", \"name\": \"Audit Context 2016-11-10 16:49:44.321025\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"related_object_type\": \"Audit\", \"modified_by_id\": 1, \"id\": 19, \"related_object_id\": 6, \"description\": \"\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(428,40,'ContextImplication',19,'created','{\"source_context_id\": 10, \"source_context_scope\": \"Program\", \"context_id\": 20, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": \"Audit\", \"modified_by_id\": 1, \"display_name\": \"Program Context 2016-11-10 16:49:43.652331 -> Audit Context 2016-11-10 16:49:44.336996\", \"id\": 40}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(429,30,'ContextImplication',19,'created','{\"source_context_id\": 16, \"source_context_scope\": \"Audit\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Audit Context 2016-11-10 16:49:44.280432 -> Default Context\", \"id\": 30}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(430,9,'Audit',19,'created','{\"context_id\": 22, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 9, \"display_name\": \"Aud-9\", \"title\": \"Aud-9\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 9, \"report_end_date\": null, \"slug\": \"Aud-9\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(431,2,'Audit',19,'created','{\"context_id\": 15, \"object_type\": \"Control\", \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"id\": 2, \"display_name\": \"Aud-2\", \"title\": \"Aud-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Planned\", \"gdrive_evidence_folder\": null, \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"secondary_contact_id\": null, \"program_id\": 2, \"report_end_date\": null, \"slug\": \"Aud-2\", \"url\": null, \"audit_firm_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"reference_url\": null, \"custom_attribute_definitions\": [], \"notes\": null, \"report_start_date\": null}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(432,17,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 17, \"display_name\": \"policy 7\", \"title\": \"policy 7\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p7\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(433,152,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 12, \"id\": 152}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(434,155,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 15, \"id\": 155}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(435,14,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 14, \"display_name\": \"policy 4\", \"title\": \"policy 4\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p4\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(436,157,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 17, \"id\": 157}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(437,153,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 13, \"id\": 153}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(438,16,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 16, \"display_name\": \"policy 6\", \"title\": \"policy 6\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p6\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(439,13,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 13, \"display_name\": \"policy 3\", \"title\": \"policy 3\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p3\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(440,19,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 19, \"display_name\": \"policy 9\", \"title\": \"policy 9\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p9\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(441,159,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 19, \"id\": 159}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(442,151,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 11, \"id\": 151}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(443,18,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 18, \"display_name\": \"policy 8\", \"title\": \"policy 8\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p8\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(444,11,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 11, \"display_name\": \"policy 1\", \"title\": \"policy 1\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p1\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(445,20,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 20, \"display_name\": \"policy 10\", \"title\": \"policy 10\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p10\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(446,158,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 18, \"id\": 158}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(447,160,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 20, \"id\": 160}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(448,156,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 16, \"id\": 156}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(449,154,'ObjectOwner',20,'created','{\"status\": \"Draft\", \"display_name\": \"policy 4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Policy\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 14, \"id\": 154}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(450,15,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 15, \"display_name\": \"policy 5\", \"title\": \"policy 5\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p5\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(451,12,'Policy',20,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Policy\", \"id\": 12, \"display_name\": \"policy 2\", \"title\": \"policy 2\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"p2\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(452,22,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 22, \"display_name\": \"reg 2\", \"title\": \"reg 2\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-2\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(453,161,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 21, \"id\": 161}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(454,167,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 27, \"id\": 167}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(455,165,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 25, \"id\": 165}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(456,169,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 29, \"id\": 169}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(457,168,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 28, \"id\": 168}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(458,170,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 30, \"id\": 170}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(459,26,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 26, \"display_name\": \"reg 6\", \"title\": \"reg 6\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-6\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(460,28,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 28, \"display_name\": \"reg 8\", \"title\": \"reg 8\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-8\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(461,27,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 27, \"display_name\": \"reg 7\", \"title\": \"reg 7\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-7\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(462,162,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 22, \"id\": 162}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(463,25,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 25, \"display_name\": \"reg 5\", \"title\": \"reg 5\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-5\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(464,29,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 29, \"display_name\": \"reg 9\", \"title\": \"reg 9\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-9\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(465,24,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 24, \"display_name\": \"reg 4\", \"title\": \"reg 4\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-4\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(466,166,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 26, \"id\": 166}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(467,163,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 23, \"id\": 163}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(468,164,'ObjectOwner',21,'created','{\"status\": \"Draft\", \"display_name\": \"reg 4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:44\", \"updated_at\": \"2016-11-10T16:49:44\", \"ownable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 24, \"id\": 164}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(469,30,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 30, \"display_name\": \"reg 10\", \"title\": \"reg 10\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-10\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(470,21,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 21, \"display_name\": \"reg 1\", \"title\": \"reg 1\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-1\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(471,23,'Regulation',21,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:44\", \"contact_id\": 15, \"meta_kind\": \"Regulation\", \"id\": 23, \"display_name\": \"reg 3\", \"title\": \"reg 3\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"reg-3\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:44\"}',NULL,'2016-11-10 16:49:44','2016-11-10 16:49:44',1,NULL,NULL,NULL,NULL),(472,32,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 32, \"display_name\": \"std 2\", \"title\": \"std 2\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-2\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(473,38,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 38, \"display_name\": \"std 8\", \"title\": \"std 8\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-8\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(474,35,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 35, \"display_name\": \"std 5\", \"title\": \"std 5\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-5\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(475,172,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 32, \"id\": 172}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(476,40,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 40, \"display_name\": \"std 10\", \"title\": \"std 10\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-10\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(477,174,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 34, \"id\": 174}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(478,178,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 38, \"id\": 178}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(479,41,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 41, \"display_name\": \"std 11\", \"title\": \"std 11\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-11\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(480,173,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 33, \"id\": 173}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(481,37,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 37, \"display_name\": \"std 7\", \"title\": \"std 7\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-7\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(482,177,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 37, \"id\": 177}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(483,34,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 34, \"display_name\": \"std 4\", \"title\": \"std 4\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-4\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(484,175,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 35, \"id\": 175}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(485,176,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 36, \"id\": 176}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(486,179,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 39, \"id\": 179}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(487,39,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 39, \"display_name\": \"std 9\", \"title\": \"std 9\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-9\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(488,33,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 33, \"display_name\": \"std 3\", \"title\": \"std 3\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-3\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(489,181,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 11<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 41, \"id\": 181}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(490,31,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 31, \"display_name\": \"std 1\", \"title\": \"std 1\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-1\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(491,36,'Standard',22,'created','{\"audit_duration_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"meta_kind\": \"Standard\", \"id\": 36, \"display_name\": \"std 6\", \"title\": \"std 6\", \"kind_id\": null, \"custom_attributes\": [], \"version\": null, \"audit_start_date\": null, \"context_id\": null, \"scope\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"modified_by_id\": 1, \"slug\": \"std-6\", \"kind\": null, \"audit_frequency_id\": null, \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"url\": \"google.com\", \"custom_attribute_definitions\": [], \"organization\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(492,180,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 40, \"id\": 180}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(493,171,'ObjectOwner',22,'created','{\"status\": \"Draft\", \"display_name\": \"std 1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Standard\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 31, \"id\": 171}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(494,6,'Section',23,'created','{\"status\": \"Not Launched\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-6\", \"description\": \"test\", \"title\": \"sec-6\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-6\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 6}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(495,9,'Section',23,'created','{\"status\": \"Deprecated\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-9\", \"description\": \"test\", \"title\": \"sec-9\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-9\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 9}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(496,188,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 188}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(497,3,'Section',23,'created','{\"status\": \"Effective\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-3\", \"description\": \"test\", \"title\": \"sec-3\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-3\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 3}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(498,185,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 185}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(499,4,'Section',23,'created','{\"status\": \"Ineffective\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-4\", \"description\": \"test\", \"title\": \"sec-4\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-4\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 4}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(500,182,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 182}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(501,191,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 191}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(502,8,'Section',23,'created','{\"status\": \"Not in Scope\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-8\", \"description\": \"test\", \"title\": \"sec-8\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-8\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 8}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(503,190,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 190}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(504,5,'Section',23,'created','{\"status\": \"Launched\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-5\", \"description\": \"test\", \"title\": \"sec-5\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-5\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 5}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(505,184,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 184}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(506,7,'Section',23,'created','{\"status\": \"In Scope\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-7\", \"description\": \"test\", \"title\": \"sec-7\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-7\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 7}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(507,187,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 187}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(508,1,'Section',23,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-1\", \"description\": \"test\", \"title\": \"sec-1\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-1\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 1}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(509,189,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 189}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(510,10,'Section',23,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-10\", \"description\": \"test\", \"title\": \"sec-10\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-10\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 10}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(511,183,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 183}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(512,2,'Section',23,'created','{\"status\": \"Final\", \"created_at\": \"2016-11-10T16:49:45\", \"display_name\": \"sec-2\", \"description\": \"test\", \"title\": \"sec-2\", \"os_state\": \"Draft\", \"na\": false, \"notes\": \"this is a note\", \"modified_by_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"slug\": \"sec-2\", \"reference_url\": \"ggrc.com\", \"parent_id\": null, \"custom_attribute_definitions\": [], \"custom_attributes\": [], \"url\": \"google.com\", \"secondary_contact_id\": 16, \"context_id\": null, \"id\": 2}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(513,186,'ObjectOwner',23,'created','{\"status\": \"Draft\", \"display_name\": \"sec-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Section\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 186}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(514,2,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 1, \"modified_by_id\": null, \"category_id\": 64, \"id\": 2, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(515,1,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 1, \"display_name\": \"control-1\", \"title\": \"control-1\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-1\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(516,195,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-4<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 4, \"id\": 195}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(517,20,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 10, \"modified_by_id\": null, \"category_id\": 55, \"id\": 20, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(518,198,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-7<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 7, \"id\": 198}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(519,19,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 10, \"modified_by_id\": null, \"category_id\": 37, \"id\": 19, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(520,6,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 6, \"display_name\": \"control-6\", \"title\": \"control-6\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-6\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(521,197,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-6<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 6, \"id\": 197}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(522,6,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 3, \"modified_by_id\": null, \"category_id\": 46, \"id\": 6, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(523,199,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control 8<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 8, \"id\": 199}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(524,3,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 2, \"modified_by_id\": null, \"category_id\": 40, \"id\": 3, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(525,193,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-2<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 2, \"id\": 193}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(526,10,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 5, \"modified_by_id\": null, \"category_id\": 43, \"id\": 10, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(527,14,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 7, \"modified_by_id\": null, \"category_id\": 53, \"id\": 14, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(528,9,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 5, \"modified_by_id\": null, \"category_id\": 37, \"id\": 9, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(529,3,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 3, \"display_name\": \"control 3\", \"title\": \"control 3\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Effective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-3\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(530,7,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 7, \"display_name\": \"control-7\", \"title\": \"control-7\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"In Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-7\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(531,2,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 2, \"display_name\": \"control-2\", \"title\": \"control-2\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Final\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-2\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(532,16,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 8, \"modified_by_id\": null, \"category_id\": 42, \"id\": 16, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(533,192,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-1<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 1, \"id\": 192}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(534,201,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-10<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 10, \"id\": 201}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(535,5,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 3, \"modified_by_id\": null, \"category_id\": 39, \"id\": 5, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(536,7,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 4, \"modified_by_id\": null, \"category_id\": 38, \"id\": 7, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(537,17,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 9, \"modified_by_id\": null, \"category_id\": 38, \"id\": 17, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(538,1,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 1, \"modified_by_id\": null, \"category_id\": 41, \"id\": 1, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(539,18,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 9, \"modified_by_id\": null, \"category_id\": 51, \"id\": 18, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(540,15,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 8, \"modified_by_id\": null, \"category_id\": 39, \"id\": 15, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(541,196,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-5<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 5, \"id\": 196}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(542,12,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 6, \"modified_by_id\": null, \"category_id\": 44, \"id\": 12, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(543,8,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 8, \"display_name\": \"control 8\", \"title\": \"control 8\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not in Scope\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-8\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(544,8,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 4, \"modified_by_id\": null, \"category_id\": 65, \"id\": 8, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(545,11,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 6, \"modified_by_id\": null, \"category_id\": 41, \"id\": 11, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(546,200,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control-9<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 9, \"id\": 200}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(547,10,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 10, \"display_name\": \"control-10\", \"title\": \"control-10\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Draft\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-10\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(548,4,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlCategory\", \"categorizable_id\": 2, \"modified_by_id\": null, \"category_id\": 58, \"id\": 4, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(549,194,'ObjectOwner',24,'created','{\"status\": \"Draft\", \"display_name\": \"control 3<->user1@ggrc.com\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"ownable_type\": \"Control\", \"modified_by_id\": null, \"person_id\": 15, \"ownable_id\": 3, \"id\": 194}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(550,5,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 5, \"display_name\": \"control-5\", \"title\": \"control-5\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Launched\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-5\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(551,4,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 4, \"display_name\": \"control-4\", \"title\": \"control-4\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Ineffective\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-4\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(552,13,'Categorization',24,'created','{\"display_name\": \"\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"category_type\": \"ControlAssertion\", \"categorizable_id\": 7, \"modified_by_id\": null, \"category_id\": 40, \"id\": 13, \"categorizable_type\": \"Control\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(553,9,'Control',24,'created','{\"company_control\": null, \"principal_assessor_id\": 15, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"fraud_related\": null, \"id\": 9, \"display_name\": \"control-9\", \"title\": \"control-9\", \"kind_id\": null, \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"documentation_description\": null, \"parent_id\": null, \"version\": null, \"directive_id\": null, \"secondary_contact_id\": 16, \"context_id\": null, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Deprecated\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_assessor_id\": 16, \"means_id\": null, \"modified_by_id\": 1, \"verify_frequency_id\": null, \"active\": null, \"slug\": \"control-9\", \"url\": \"google.com\", \"notes\": \"this is a note\", \"key_control\": null, \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(554,2,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Ineffective\", \"id\": 2, \"finished_date\": null, \"display_name\": \"ca-2\", \"recipients\": null, \"title\": \"ca-2\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-2\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(555,5,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Not Applicable\", \"id\": 5, \"finished_date\": null, \"display_name\": \"ca-5\", \"recipients\": null, \"title\": \"ca-5\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-5\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(556,7,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Effective\", \"id\": 7, \"finished_date\": null, \"display_name\": \"ca-7\", \"recipients\": null, \"title\": \"ca-7\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-7\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(557,9,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Needs improvement\", \"id\": 9, \"finished_date\": null, \"display_name\": \"ca-9\", \"recipients\": null, \"title\": \"ca-9\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-9\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(558,10,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Not Applicable\", \"id\": 10, \"finished_date\": null, \"display_name\": \"ca-10\", \"recipients\": null, \"title\": \"ca-10\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-10\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(559,4,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Not Applicable\", \"id\": 4, \"finished_date\": null, \"display_name\": \"ca-4\", \"recipients\": null, \"title\": \"ca-4\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-4\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(560,3,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Needs improvement\", \"id\": 3, \"finished_date\": null, \"display_name\": \"ca-3\", \"recipients\": null, \"title\": \"ca-3\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-3\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(561,6,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Effective\", \"id\": 6, \"finished_date\": null, \"display_name\": \"ca-6\", \"recipients\": null, \"title\": \"ca-6\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-6\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(562,8,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Ineffective\", \"id\": 8, \"finished_date\": null, \"display_name\": \"ca-8\", \"recipients\": null, \"title\": \"ca-8\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-8\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(563,1,'Assessment',25,'created','{\"verified_date\": null, \"context_id\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"contact_id\": 15, \"design\": \"Effective\", \"id\": 1, \"finished_date\": null, \"display_name\": \"ca-1\", \"recipients\": null, \"title\": \"ca-1\", \"custom_attributes\": [], \"custom_attribute_definitions\": [], \"modified_by_id\": 1, \"start_date\": \"2015-07-01T00:00:00\", \"status\": \"Not Started\", \"description\": \"test\", \"end_date\": \"2015-07-15T00:00:00\", \"os_state\": \"Draft\", \"secondary_contact_id\": 16, \"slug\": \"ca-1\", \"send_by_default\": null, \"url\": \"google.com\", \"notes\": \"this is a note\", \"reference_url\": \"ggrc.com\", \"test_plan\": \"plan\", \"operationally\": null, \"created_at\": \"2016-11-10T16:49:45\"}',NULL,'2016-11-10 16:49:45','2016-11-10 16:49:45',1,NULL,NULL,NULL,NULL),(564,3,'Context',26,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(565,61,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 28, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:46.001859\", \"id\": 61}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(566,5,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"frequency\": \"annually\", \"id\": 5, \"display_name\": \"wf-5\", \"object_approval\": false, \"title\": \"wf-5\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 28, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-5\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:46\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(567,8,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"frequency\": \"monthly\", \"id\": 8, \"display_name\": \"wf-8\", \"object_approval\": false, \"title\": \"wf-8\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 31, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-8\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:46\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(568,10,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 10, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 10, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(569,7,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-7\", \"context_id\": 30, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 7, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 7}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(570,53,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 24, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:45.906636\", \"id\": 53}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(571,62,'ContextImplication',26,'created','{\"source_context_id\": 29, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:46.023355 -> Default Context\", \"id\": 62}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(572,2,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"workflow_id\": 2, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 2}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(573,12,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 12}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(574,5,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-5\", \"context_id\": 28, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 5, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 5}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(575,55,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 25, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:45.932433\", \"id\": 55}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(576,1,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 1, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 1, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(577,70,'ContextImplication',26,'created','{\"source_context_id\": 33, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:46.111004 -> Default Context\", \"id\": 70}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(578,60,'ContextImplication',26,'created','{\"source_context_id\": 28, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:46.001859 -> Default Context\", \"id\": 60}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(579,5,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 5, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 5, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(580,32,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:46.089166\", \"name\": \"Workflow Context 2016-11-10 16:49:46.089166\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 32, \"related_object_id\": 9, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(581,64,'ContextImplication',26,'created','{\"source_context_id\": 30, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:46.046184 -> Default Context\", \"id\": 64}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(582,18,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-8\", \"context_id\": 31, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 18}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(583,13,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-3\", \"context_id\": 26, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 13}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(584,29,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:46.023355\", \"name\": \"Workflow Context 2016-11-10 16:49:46.023355\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 29, \"related_object_id\": 6, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(585,3,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-3\", \"context_id\": 26, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"workflow_id\": 3, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 3}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(586,4,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 4, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 4, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(587,65,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 30, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:46.046184\", \"id\": 65}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(588,25,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:45.932433\", \"name\": \"Workflow Context 2016-11-10 16:49:45.932433\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 25, \"related_object_id\": 2, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(589,14,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-4\", \"context_id\": 27, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 14}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(590,19,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-9\", \"context_id\": 32, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 19}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(591,69,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 32, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:46.089166\", \"id\": 69}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(592,3,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"monthly\", \"id\": 3, \"display_name\": \"wf-3\", \"object_approval\": false, \"title\": \"wf-3\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 26, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-3\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(593,54,'ContextImplication',26,'created','{\"source_context_id\": 25, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:45.932433 -> Default Context\", \"id\": 54}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(594,27,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:45.979489\", \"name\": \"Workflow Context 2016-11-10 16:49:45.979489\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 27, \"related_object_id\": 4, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(595,11,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-1\", \"context_id\": 24, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 11}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(596,67,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 31, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:46.067720\", \"id\": 67}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(597,4,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-4\", \"context_id\": 27, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"workflow_id\": 4, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 4}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(598,33,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:46.111004\", \"name\": \"Workflow Context 2016-11-10 16:49:46.111004\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 33, \"related_object_id\": 10, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(599,6,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-6\", \"context_id\": 29, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 6, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 6}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(600,3,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 3, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 3, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(601,10,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-10\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 10, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 10}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(602,4,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"quarterly\", \"id\": 4, \"display_name\": \"wf-4\", \"object_approval\": false, \"title\": \"wf-4\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 27, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-4\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(603,71,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:46.111004\", \"id\": 71}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(604,6,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 6, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 6, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(605,30,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:46.046184\", \"name\": \"Workflow Context 2016-11-10 16:49:46.046184\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 30, \"related_object_id\": 7, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(606,58,'ContextImplication',26,'created','{\"source_context_id\": 27, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:45.979489 -> Default Context\", \"id\": 58}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(607,20,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-10\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 20}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(608,59,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 27, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:45.979489\", \"id\": 59}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(609,52,'ContextImplication',26,'created','{\"source_context_id\": 24, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:45.906636 -> Default Context\", \"id\": 52}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(610,68,'ContextImplication',26,'created','{\"source_context_id\": 32, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:46.089166 -> Default Context\", \"id\": 68}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(611,1,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-1\", \"context_id\": 24, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"workflow_id\": 1, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 1}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(612,26,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:45.957514\", \"name\": \"Workflow Context 2016-11-10 16:49:45.957514\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 26, \"related_object_id\": 3, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(613,9,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-9\", \"context_id\": 32, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 9, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 9}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(614,6,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"frequency\": \"monthly\", \"id\": 6, \"display_name\": \"wf-6\", \"object_approval\": false, \"title\": \"wf-6\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 29, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-6\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:46\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(615,9,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"frequency\": \"monthly\", \"id\": 9, \"display_name\": \"wf-9\", \"object_approval\": false, \"title\": \"wf-9\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 32, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-9\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"not so custom\", \"created_at\": \"2016-11-10T16:49:46\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(616,2,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 2, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(617,8,'WorkflowPerson',26,'created','{\"status\": \"Draft\", \"display_name\": \"user@example.com<->wf-8\", \"context_id\": 31, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 8, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 8}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(618,24,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:45.906636\", \"name\": \"Workflow Context 2016-11-10 16:49:45.906636\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 24, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(619,7,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 7, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 7, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(620,16,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-6\", \"context_id\": 29, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 16}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(621,28,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:46.001859\", \"name\": \"Workflow Context 2016-11-10 16:49:46.001859\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 28, \"related_object_id\": 5, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(622,63,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 29, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:46.023355\", \"id\": 63}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(623,17,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-7\", \"context_id\": 30, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 17}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(624,31,'Context',26,'created','{\"display_name\": \"Workflow Context 2016-11-10 16:49:46.067720\", \"name\": \"Workflow Context 2016-11-10 16:49:46.067720\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Workflow\", \"modified_by_id\": 1, \"id\": 31, \"related_object_id\": 8, \"description\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(625,2,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"weekly\", \"id\": 2, \"display_name\": \"wf-2\", \"object_approval\": false, \"title\": \"wf-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-2\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(626,9,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 9, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 9, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(627,56,'ContextImplication',26,'created','{\"source_context_id\": 26, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:45.957514 -> Default Context\", \"id\": 56}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(628,66,'ContextImplication',26,'created','{\"source_context_id\": 31, \"source_context_scope\": \"Workflow\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"context_scope\": null, \"modified_by_id\": 1, \"display_name\": \"Workflow Context 2016-11-10 16:49:46.067720 -> Default Context\", \"id\": 66}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(629,15,'UserRole',26,'created','{\"display_name\": \"user@example.com <-> WorkflowOwner in wf-5\", \"context_id\": 28, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 18, \"modified_by_id\": 1, \"person_id\": 1, \"id\": 15}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(630,10,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"frequency\": \"monthly\", \"id\": 10, \"display_name\": \"wf-10\", \"object_approval\": false, \"title\": \"wf-10\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 33, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-10\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": null, \"created_at\": \"2016-11-10T16:49:46\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(631,1,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"one_time\", \"id\": 1, \"display_name\": \"wf-1\", \"object_approval\": false, \"title\": \"wf-1\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 24, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-1\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(632,7,'Workflow',26,'created','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"frequency\": \"monthly\", \"id\": 7, \"display_name\": \"wf-7\", \"object_approval\": false, \"title\": \"wf-7\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 30, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-7\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:46\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(633,8,'Notification',26,'created','{\"notification_type_id\": 4, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:49:45\", \"object_type\": \"Assessment\", \"send_on\": \"2016-11-10\", \"object_id\": 8, \"updated_at\": \"2016-11-10T16:49:45\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 8, \"display_name\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(634,57,'ContextImplication',26,'created','{\"source_context_id\": null, \"source_context_scope\": null, \"context_id\": 26, \"created_at\": \"2016-11-10T16:49:45\", \"updated_at\": \"2016-11-10T16:49:45\", \"context_scope\": \"Workflow\", \"modified_by_id\": 1, \"display_name\": \"Default Context -> Workflow Context 2016-11-10 16:49:45.957514\", \"id\": 57}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(635,1,'Workflow',27,'modified','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"one_time\", \"id\": 1, \"display_name\": \"wf-1\", \"object_approval\": false, \"title\": \"wf-1\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 24, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-1\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(636,4,'Workflow',27,'modified','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"quarterly\", \"id\": 4, \"display_name\": \"wf-4\", \"object_approval\": false, \"title\": \"wf-4\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 27, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-4\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(637,3,'Workflow',27,'modified','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"monthly\", \"id\": 3, \"display_name\": \"wf-3\", \"object_approval\": false, \"title\": \"wf-3\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 26, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-3\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(638,2,'Workflow',27,'modified','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:45\", \"frequency\": \"weekly\", \"id\": 2, \"display_name\": \"wf-2\", \"object_approval\": false, \"title\": \"wf-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-2\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(639,5,'Workflow',27,'modified','{\"non_adjusted_next_cycle_start_date\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"frequency\": \"annually\", \"id\": 5, \"display_name\": \"wf-5\", \"object_approval\": false, \"title\": \"wf-5\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 28, \"start_date\": null, \"status\": \"Draft\", \"notify_on_change\": false, \"description\": \"test\", \"end_date\": null, \"recurrences\": false, \"slug\": \"wf-5\", \"kind\": null, \"next_cycle_start_date\": null, \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:46\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(640,11,'WorkflowPerson',27,'created','{\"status\": \"Draft\", \"display_name\": \"user1@ggrc.com<->wf-1\", \"context_id\": 24, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 11}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(641,4,'TaskGroup',27,'created','{\"slug\": \"tg-4\", \"display_name\": \"tg-4\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-4\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 4, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 27, \"id\": 4, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(642,6,'TaskGroup',27,'created','{\"slug\": \"tg-6\", \"display_name\": \"tg-6\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-6\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 1, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 24, \"id\": 6, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(643,22,'UserRole',27,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowMember in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 15, \"id\": 22}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(644,15,'WorkflowPerson',27,'created','{\"status\": \"Draft\", \"display_name\": \"user1@ggrc.com<->wf-5\", \"context_id\": 28, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 5, \"modified_by_id\": null, \"person_id\": 15, \"id\": 15}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(645,7,'TaskGroup',27,'created','{\"slug\": \"tg-7\", \"display_name\": \"tg-7\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-7\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 2, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 25, \"id\": 7, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(646,21,'UserRole',27,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowMember in wf-1\", \"context_id\": 24, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 15, \"id\": 21}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(647,8,'TaskGroup',27,'created','{\"slug\": \"tg-8\", \"display_name\": \"tg-8\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-8\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 3, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 26, \"id\": 8, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(648,9,'TaskGroup',27,'created','{\"slug\": \"tg-9\", \"display_name\": \"tg-9\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-9\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 4, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 27, \"id\": 9, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(649,5,'TaskGroup',27,'created','{\"slug\": \"tg-5\", \"display_name\": \"tg-5\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-5\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 5, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 28, \"id\": 5, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(650,1,'TaskGroup',27,'created','{\"slug\": \"tg-1\", \"display_name\": \"tg-1\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-1\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 1, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 24, \"id\": 1, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(651,3,'TaskGroup',27,'created','{\"slug\": \"tg-3\", \"display_name\": \"tg-3\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-3\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 3, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 26, \"id\": 3, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(652,23,'UserRole',27,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowMember in wf-3\", \"context_id\": 26, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 15, \"id\": 23}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(653,25,'UserRole',27,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowMember in wf-5\", \"context_id\": 28, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 15, \"id\": 25}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(654,10,'TaskGroup',27,'created','{\"slug\": \"tg-10\", \"display_name\": \"tg-10\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-10\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 5, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 28, \"id\": 10, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(655,12,'WorkflowPerson',27,'created','{\"status\": \"Draft\", \"display_name\": \"user1@ggrc.com<->wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 2, \"modified_by_id\": null, \"person_id\": 15, \"id\": 12}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(656,24,'UserRole',27,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowMember in wf-4\", \"context_id\": 27, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 15, \"id\": 24}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(657,13,'WorkflowPerson',27,'created','{\"status\": \"Draft\", \"display_name\": \"user1@ggrc.com<->wf-3\", \"context_id\": 26, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 3, \"modified_by_id\": null, \"person_id\": 15, \"id\": 13}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(658,14,'WorkflowPerson',27,'created','{\"status\": \"Draft\", \"display_name\": \"user1@ggrc.com<->wf-4\", \"context_id\": 27, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"workflow_id\": 4, \"modified_by_id\": null, \"person_id\": 15, \"id\": 14}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(659,2,'TaskGroup',27,'created','{\"slug\": \"tg-2\", \"display_name\": \"tg-2\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 2, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 25, \"id\": 2, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(660,4,'TaskGroup',28,'modified','{\"slug\": \"tg-4\", \"display_name\": \"tg-4\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-4\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 4, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 27, \"id\": 4, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(661,6,'TaskGroup',28,'modified','{\"slug\": \"tg-6\", \"display_name\": \"tg-6\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-6\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 1, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 24, \"id\": 6, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(662,1,'TaskGroup',28,'modified','{\"slug\": \"tg-1\", \"display_name\": \"tg-1\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-1\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 1, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 24, \"id\": 1, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(663,2,'TaskGroup',28,'modified','{\"slug\": \"tg-2\", \"display_name\": \"tg-2\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 2, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 25, \"id\": 2, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(664,3,'TaskGroup',28,'modified','{\"slug\": \"tg-3\", \"display_name\": \"tg-3\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-3\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 3, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 26, \"id\": 3, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(665,5,'TaskGroup',28,'modified','{\"slug\": \"tg-5\", \"display_name\": \"tg-5\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-5\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 5, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 28, \"id\": 5, \"description\": \"test\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(666,8,'TaskGroupTask',28,'created','{\"context_id\": 25, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": 5, \"id\": 8, \"task_group_id\": 2, \"task_type\": \"menu\", \"display_name\": \"Weekly<->tg-2\", \"object_approval\": false, \"title\": \"Weekly\", \"modified_by_id\": 1, \"start_date\": null, \"description\": null, \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"relative_start_day\": 2, \"slug\": \"task-8\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(667,7,'TaskGroupTask',28,'created','{\"context_id\": 24, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": null, \"id\": 7, \"task_group_id\": 1, \"task_type\": \"text\", \"display_name\": \"One time<->tg-1\", \"object_approval\": false, \"title\": \"One time\", \"modified_by_id\": 1, \"start_date\": \"2015-07-01\", \"description\": \"test\", \"end_date\": \"2015-07-15\", \"secondary_contact_id\": null, \"response_options\": \"[]\", \"relative_start_day\": null, \"slug\": \"task-7\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(668,10,'TaskGroupTask',28,'created','{\"context_id\": 27, \"relative_end_month\": 2, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": 15, \"id\": 10, \"task_group_id\": 4, \"task_type\": \"text\", \"display_name\": \"Quarterly<->tg-4\", \"object_approval\": false, \"title\": \"Quarterly\", \"modified_by_id\": 1, \"start_date\": null, \"description\": \"test\", \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": \"[]\", \"relative_start_day\": 5, \"slug\": \"task-10\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": 1, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(669,6,'TaskGroupTask',28,'created','{\"context_id\": 24, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": null, \"id\": 6, \"task_group_id\": 6, \"task_type\": \"checkbox\", \"display_name\": \"One time<->tg-6\", \"object_approval\": false, \"title\": \"One time\", \"modified_by_id\": 1, \"start_date\": \"2015-07-01\", \"description\": null, \"end_date\": \"2015-07-15\", \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"relative_start_day\": null, \"slug\": \"task-6\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(670,1,'TaskGroupTask',28,'created','{\"context_id\": 24, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": null, \"id\": 1, \"task_group_id\": 1, \"task_type\": \"text\", \"display_name\": \"One time<->tg-1\", \"object_approval\": false, \"title\": \"One time\", \"modified_by_id\": 1, \"start_date\": \"2015-07-01\", \"description\": \"test\", \"end_date\": \"2015-07-15\", \"secondary_contact_id\": null, \"response_options\": \"[]\", \"relative_start_day\": null, \"slug\": \"task-1\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(671,9,'TaskGroupTask',28,'created','{\"context_id\": 26, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": 22, \"id\": 9, \"task_group_id\": 3, \"task_type\": \"checkbox\", \"display_name\": \"Monthly<->tg-3\", \"object_approval\": false, \"title\": \"Monthly\", \"modified_by_id\": 1, \"start_date\": null, \"description\": null, \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"relative_start_day\": 1, \"slug\": \"task-9\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(672,2,'TaskGroupTask',28,'created','{\"context_id\": 25, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": 5, \"id\": 2, \"task_group_id\": 2, \"task_type\": \"text\", \"display_name\": \"Weekly<->tg-2\", \"object_approval\": false, \"title\": \"Weekly\", \"modified_by_id\": 1, \"start_date\": null, \"description\": \"test\", \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": \"[]\", \"relative_start_day\": 2, \"slug\": \"task-2\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(673,3,'TaskGroupTask',28,'created','{\"context_id\": 26, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": 22, \"id\": 3, \"task_group_id\": 3, \"task_type\": \"checkbox\", \"display_name\": \"Monthly<->tg-3\", \"object_approval\": false, \"title\": \"Monthly\", \"modified_by_id\": 1, \"start_date\": null, \"description\": null, \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"relative_start_day\": 1, \"slug\": \"task-3\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(674,5,'TaskGroupTask',28,'created','{\"context_id\": 28, \"relative_end_month\": 7, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": 15, \"id\": 5, \"task_group_id\": 5, \"task_type\": \"menu\", \"display_name\": \"Annually<->tg-5\", \"object_approval\": false, \"title\": \"Annually\", \"modified_by_id\": 1, \"start_date\": null, \"description\": null, \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"relative_start_day\": 7, \"slug\": \"task-5\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": 5, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(675,4,'TaskGroupTask',28,'created','{\"context_id\": 27, \"relative_end_month\": 2, \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"relative_end_day\": 15, \"id\": 4, \"task_group_id\": 4, \"task_type\": \"text\", \"display_name\": \"Quarterly<->tg-4\", \"object_approval\": false, \"title\": \"Quarterly\", \"modified_by_id\": 1, \"start_date\": null, \"description\": \"test\", \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": \"[]\", \"relative_start_day\": 5, \"slug\": \"task-4\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": 1, \"sort_index\": \"\"}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(676,29,'UserRole',29,'created','{\"display_name\": \"user11@example.com <-> Reader\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 5, \"modified_by_id\": null, \"person_id\": 5, \"id\": 29}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(677,34,'UserRole',29,'created','{\"display_name\": \"user18@example.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 12, \"id\": 34}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(678,46,'UserRole',29,'created','{\"display_name\": \"user20@ggrc.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 27, \"id\": 46}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(679,26,'UserRole',29,'created','{\"display_name\": \"user1@example.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 2, \"id\": 26}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(680,43,'UserRole',29,'created','{\"display_name\": \"user16@ggrc.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 23, \"id\": 43}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(681,35,'UserRole',29,'created','{\"display_name\": \"user19@example.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 13, \"id\": 35}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(682,36,'UserRole',29,'created','{\"display_name\": \"user20@example.com <-> Creator\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 17, \"modified_by_id\": null, \"person_id\": 14, \"id\": 36}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(683,28,'UserRole',29,'created','{\"display_name\": \"user10@example.com <-> Creator\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 17, \"modified_by_id\": null, \"person_id\": 4, \"id\": 28}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(684,32,'UserRole',29,'created','{\"display_name\": \"user15@example.com <-> Creator\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 17, \"modified_by_id\": null, \"person_id\": 9, \"id\": 32}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(685,31,'UserRole',29,'created','{\"display_name\": \"user14@example.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 8, \"id\": 31}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(686,38,'UserRole',29,'created','{\"display_name\": \"user10@ggrc.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 17, \"id\": 38}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(687,45,'UserRole',29,'created','{\"display_name\": \"user18@ggrc.com <-> Reader\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 5, \"modified_by_id\": null, \"person_id\": 25, \"id\": 45}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(688,37,'UserRole',29,'created','{\"display_name\": \"user1@ggrc.com <-> Reader\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 5, \"modified_by_id\": null, \"person_id\": 15, \"id\": 37}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(689,40,'UserRole',29,'created','{\"display_name\": \"user12@ggrc.com <-> Creator\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 17, \"modified_by_id\": null, \"person_id\": 19, \"id\": 40}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(690,44,'UserRole',29,'created','{\"display_name\": \"user17@ggrc.com <-> Creator\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 17, \"modified_by_id\": null, \"person_id\": 24, \"id\": 44}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(691,39,'UserRole',29,'created','{\"display_name\": \"user11@ggrc.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 18, \"id\": 39}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(692,30,'UserRole',29,'created','{\"display_name\": \"user13@example.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 7, \"id\": 30}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(693,41,'UserRole',29,'created','{\"display_name\": \"user13@ggrc.com <-> Reader\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 5, \"modified_by_id\": null, \"person_id\": 20, \"id\": 41}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(694,33,'UserRole',29,'created','{\"display_name\": \"user16@example.com <-> Reader\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 5, \"modified_by_id\": null, \"person_id\": 10, \"id\": 33}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(695,27,'UserRole',29,'created','{\"display_name\": \"user2@example.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 3, \"id\": 27}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(696,48,'UserRole',29,'created','{\"display_name\": \"user22@ggrc.com <-> Creator\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 17, \"modified_by_id\": null, \"person_id\": 29, \"id\": 48}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(697,47,'UserRole',29,'created','{\"display_name\": \"user21@ggrc.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 28, \"id\": 47}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(698,42,'UserRole',29,'created','{\"display_name\": \"user15@ggrc.com <-> Administrator\", \"context_id\": 0, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"role_id\": 8, \"modified_by_id\": null, \"person_id\": 22, \"id\": 42}',NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',1,NULL,NULL,NULL,NULL),(699,7,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:7 <-> DataAsset:7\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 7, \"destination_type\": \"DataAsset\", \"source_id\": 7, \"id\": 7, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',7,'DataAsset',7),(700,6,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:6 <-> DataAsset:6\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 6, \"destination_type\": \"DataAsset\", \"source_id\": 6, \"id\": 6, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',6,'DataAsset',6),(701,8,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:8 <-> DataAsset:8\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 8, \"destination_type\": \"DataAsset\", \"source_id\": 8, \"id\": 8, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',8,'DataAsset',8),(702,1,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:1 <-> DataAsset:1\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 1, \"destination_type\": \"DataAsset\", \"source_id\": 1, \"id\": 1, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',1,'DataAsset',1),(703,3,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:3 <-> DataAsset:3\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 3, \"destination_type\": \"DataAsset\", \"source_id\": 3, \"id\": 3, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',3,'DataAsset',3),(704,4,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:4 <-> DataAsset:4\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 4, \"destination_type\": \"DataAsset\", \"source_id\": 4, \"id\": 4, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',4,'DataAsset',4),(705,10,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:10 <-> DataAsset:10\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 10, \"destination_type\": \"DataAsset\", \"source_id\": 10, \"id\": 10, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',10,'DataAsset',10),(706,9,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:9 <-> DataAsset:9\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 9, \"destination_type\": \"DataAsset\", \"source_id\": 9, \"id\": 9, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',9,'DataAsset',9),(707,5,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:5 <-> DataAsset:5\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 5, \"destination_type\": \"DataAsset\", \"source_id\": 5, \"id\": 5, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',5,'DataAsset',5),(708,2,'Relationship',30,'created','{\"status\": \"Draft\", \"display_name\": \"AccessGroup:2 <-> DataAsset:2\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:47\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"source_type\": \"AccessGroup\", \"automapping_id\": null, \"destination_id\": 2, \"destination_type\": \"DataAsset\", \"source_id\": 2, \"id\": 2, \"attrs\": {}}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,'AccessGroup',2,'DataAsset',2),(709,72,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 8\", \"context_id\": 11, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 72}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(710,75,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 9\", \"context_id\": 12, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 75}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(711,65,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 6\", \"context_id\": 9, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 65}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(712,62,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 5\", \"context_id\": 8, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 62}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(713,53,'UserRole',31,'created','{\"display_name\": \"user11@example.com <-> ProgramEditor in program 2\", \"context_id\": 5, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 5, \"id\": 53}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(714,67,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 7\", \"context_id\": 10, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 67}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(715,61,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 5\", \"context_id\": 8, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 61}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(716,69,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 7\", \"context_id\": 10, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 69}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(717,66,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 6\", \"context_id\": 9, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 66}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(718,54,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 2\", \"context_id\": 5, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 54}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(719,63,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 5\", \"context_id\": 8, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 63}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(720,56,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 3\", \"context_id\": 6, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 56}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(721,76,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 10\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 76}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(722,73,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 9\", \"context_id\": 12, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 73}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(723,57,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 3\", \"context_id\": 6, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 57}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(724,50,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 1\", \"context_id\": 4, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 50}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(725,74,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 9\", \"context_id\": 12, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 74}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(726,68,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 7\", \"context_id\": 10, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 68}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(727,59,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 4\", \"context_id\": 7, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 59}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(728,51,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 1\", \"context_id\": 4, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 51}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(729,58,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 4\", \"context_id\": 7, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 58}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(730,64,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 6\", \"context_id\": 9, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 64}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(731,78,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 10\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 78}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(732,49,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 1\", \"context_id\": 4, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 49}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(733,60,'UserRole',31,'created','{\"display_name\": \"user12@example.com <-> ProgramReader in program 4\", \"context_id\": 7, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 6, \"id\": 60}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(734,52,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 2\", \"context_id\": 5, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 52}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(735,77,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 10\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 77}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(736,71,'UserRole',31,'created','{\"display_name\": \"user10@example.com <-> ProgramEditor in program 8\", \"context_id\": 11, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 2, \"modified_by_id\": null, \"person_id\": 4, \"id\": 71}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(737,55,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 3\", \"context_id\": 6, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 55}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(738,70,'UserRole',31,'created','{\"display_name\": \"user1@ggrc.com <-> ProgramOwner in program 8\", \"context_id\": 11, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 1, \"modified_by_id\": null, \"person_id\": 15, \"id\": 70}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(739,94,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 8\", \"context_id\": 11, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 94}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(740,79,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-1\", \"context_id\": 14, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 79}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(741,80,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 1\", \"context_id\": 4, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 80}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(742,83,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-3\", \"context_id\": 16, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 83}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(743,96,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 9\", \"context_id\": 12, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 96}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(744,86,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 4\", \"context_id\": 7, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 86}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(745,85,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-4\", \"context_id\": 17, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 85}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(746,91,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-7\", \"context_id\": 20, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 91}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(747,90,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 6\", \"context_id\": 9, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 90}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(748,98,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 10\", \"context_id\": 13, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 98}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(749,97,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-10\", \"context_id\": 23, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 97}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(750,93,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-8\", \"context_id\": 21, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 93}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(751,92,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 7\", \"context_id\": 10, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 92}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(752,87,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-5\", \"context_id\": 18, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 87}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(753,82,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 2\", \"context_id\": 5, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 82}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(754,89,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-6\", \"context_id\": 19, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 89}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(755,81,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-2\", \"context_id\": 15, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 81}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(756,95,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> Auditor in Aud-9\", \"context_id\": 22, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 14, \"modified_by_id\": null, \"person_id\": 16, \"id\": 95}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(757,88,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 5\", \"context_id\": 8, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 88}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(758,84,'UserRole',32,'created','{\"display_name\": \"user2@ggrc.com <-> ProgramReader in program 3\", \"context_id\": 6, \"created_at\": \"2016-11-10T16:49:47\", \"updated_at\": \"2016-11-10T16:49:47\", \"role_id\": 3, \"modified_by_id\": null, \"person_id\": 16, \"id\": 84}',NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',1,NULL,NULL,NULL,NULL),(759,5,'ObjectPerson',33,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:47\", \"display_name\": \"reg 5<->user18@ggrc.com\", \"end_date\": null, \"context_id\": null, \"notes\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"start_date\": null, \"role\": null, \"personable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 25, \"personable_id\": 25, \"id\": 5}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,NULL,NULL,NULL,NULL),(760,3,'ObjectPerson',33,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:47\", \"display_name\": \"reg 3<->user16@ggrc.com\", \"end_date\": null, \"context_id\": null, \"notes\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"start_date\": null, \"role\": null, \"personable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 23, \"personable_id\": 23, \"id\": 3}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,NULL,NULL,NULL,NULL),(761,4,'ObjectPerson',33,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:47\", \"display_name\": \"reg 4<->user17@ggrc.com\", \"end_date\": null, \"context_id\": null, \"notes\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"start_date\": null, \"role\": null, \"personable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 24, \"personable_id\": 24, \"id\": 4}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,NULL,NULL,NULL,NULL),(762,1,'ObjectPerson',33,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:47\", \"display_name\": \"reg 1<->user14@ggrc.com\", \"end_date\": null, \"context_id\": null, \"notes\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"start_date\": null, \"role\": null, \"personable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 21, \"personable_id\": 21, \"id\": 1}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,NULL,NULL,NULL,NULL),(763,2,'ObjectPerson',33,'created','{\"status\": \"Draft\", \"created_at\": \"2016-11-10T16:49:47\", \"display_name\": \"reg 2<->user15@ggrc.com\", \"end_date\": null, \"context_id\": null, \"notes\": null, \"updated_at\": \"2016-11-10T16:49:47\", \"start_date\": null, \"role\": null, \"personable_type\": \"Regulation\", \"modified_by_id\": null, \"person_id\": 22, \"personable_id\": 22, \"id\": 2}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,NULL,NULL,NULL,NULL),(764,14,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:4 <-> Regulation:21\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 21, \"destination_type\": \"Regulation\", \"source_id\": 4, \"id\": 14, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',4,'Regulation',21),(765,13,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:3 <-> Policy:13\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 13, \"destination_type\": \"Policy\", \"source_id\": 3, \"id\": 13, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',3,'Policy',13),(766,16,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:6 <-> Regulation:23\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 23, \"destination_type\": \"Regulation\", \"source_id\": 6, \"id\": 16, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',6,'Regulation',23),(767,12,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:2 <-> Policy:12\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 12, \"destination_type\": \"Policy\", \"source_id\": 2, \"id\": 12, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',2,'Policy',12),(768,19,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:9 <-> Standard:32\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 32, \"destination_type\": \"Standard\", \"source_id\": 9, \"id\": 19, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',9,'Standard',32),(769,15,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:5 <-> Regulation:22\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 22, \"destination_type\": \"Regulation\", \"source_id\": 5, \"id\": 15, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',5,'Regulation',22),(770,17,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:7 <-> Regulation:24\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 24, \"destination_type\": \"Regulation\", \"source_id\": 7, \"id\": 17, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',7,'Regulation',24),(771,20,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:10 <-> Standard:33\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 33, \"destination_type\": \"Standard\", \"source_id\": 10, \"id\": 20, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',10,'Standard',33),(772,18,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:8 <-> Standard:31\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 31, \"destination_type\": \"Standard\", \"source_id\": 8, \"id\": 18, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',8,'Standard',31),(773,11,'Relationship',34,'created','{\"status\": \"Draft\", \"display_name\": \"Section:1 <-> Policy:11\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Section\", \"automapping_id\": null, \"destination_id\": 11, \"destination_type\": \"Policy\", \"source_id\": 1, \"id\": 11, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Section',1,'Policy',11),(774,32,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:6\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 6, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 32, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',6),(775,36,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:8\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 8, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 36, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',8),(776,22,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:1\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 1, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 22, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',1),(777,25,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:3 <-> Audit:3\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 3, \"destination_type\": \"Audit\", \"source_id\": 3, \"id\": 25, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',3,'Audit',3),(778,26,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:3\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 3, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 26, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',3),(779,38,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:9\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 9, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 38, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',9),(780,34,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:7\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 7, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 34, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',7),(781,30,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:5\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 5, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 30, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',5),(782,28,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:4\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 4, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 28, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',4),(783,39,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:10 <-> Audit:10\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 10, \"destination_type\": \"Audit\", \"source_id\": 10, \"id\": 39, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',10,'Audit',10),(784,31,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:6 <-> Audit:6\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 6, \"destination_type\": \"Audit\", \"source_id\": 6, \"id\": 31, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',6,'Audit',6),(785,23,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:2 <-> Audit:2\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 2, \"destination_type\": \"Audit\", \"source_id\": 2, \"id\": 23, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',2,'Audit',2),(786,40,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:10\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 10, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 40, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',10),(787,37,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:9 <-> Audit:9\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 9, \"destination_type\": \"Audit\", \"source_id\": 9, \"id\": 37, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',9,'Audit',9),(788,33,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:7 <-> Audit:7\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 7, \"destination_type\": \"Audit\", \"source_id\": 7, \"id\": 33, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',7,'Audit',7),(789,29,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:5 <-> Audit:5\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 5, \"destination_type\": \"Audit\", \"source_id\": 5, \"id\": 29, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',5,'Audit',5),(790,24,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Person:15 <-> Assessment:2\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Person\", \"automapping_id\": null, \"destination_id\": 2, \"destination_type\": \"Assessment\", \"source_id\": 15, \"id\": 24, \"attrs\": {\"AssigneeType\": \"Verifier,Assessor,Creator\"}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Person',15,'Assessment',2),(791,21,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:1 <-> Audit:1\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 1, \"destination_type\": \"Audit\", \"source_id\": 1, \"id\": 21, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',1,'Audit',1),(792,35,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:8 <-> Audit:8\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 8, \"destination_type\": \"Audit\", \"source_id\": 8, \"id\": 35, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',8,'Audit',8),(793,27,'Relationship',35,'created','{\"status\": \"Draft\", \"display_name\": \"Assessment:4 <-> Audit:4\", \"context_id\": null, \"created_at\": \"2016-11-10T16:49:48\", \"modified_by_id\": null, \"updated_at\": \"2016-11-10T16:49:48\", \"source_type\": \"Assessment\", \"automapping_id\": null, \"destination_id\": 4, \"destination_type\": \"Audit\", \"source_id\": 4, \"id\": 27, \"attrs\": {}}',NULL,'2016-11-10 16:49:48','2016-11-10 16:49:48',1,'Assessment',4,'Audit',4),(794,115,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-9\", \"context_id\": 32, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 115}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(795,110,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-6\", \"context_id\": 29, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 110}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(796,106,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-4\", \"context_id\": 27, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 106}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(797,116,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-9\", \"context_id\": 32, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 116}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(798,103,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-3\", \"context_id\": 26, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 103}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(799,112,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-7\", \"context_id\": 30, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 112}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(800,113,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-8\", \"context_id\": 31, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 113}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(801,99,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-1\", \"context_id\": 24, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 99}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(802,104,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-3\", \"context_id\": 26, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 104}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(803,118,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-10\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 118}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(804,101,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 101}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(805,114,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-8\", \"context_id\": 31, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 114}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(806,109,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-6\", \"context_id\": 29, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 109}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(807,102,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 102}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(808,107,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-5\", \"context_id\": 28, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 107}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(809,117,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-10\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 117}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(810,105,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-4\", \"context_id\": 27, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 105}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(811,111,'UserRole',36,'created','{\"display_name\": \"user1@ggrc.com <-> WorkflowOwner in wf-7\", \"context_id\": 30, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 18, \"modified_by_id\": null, \"person_id\": 15, \"id\": 111}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(812,100,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-1\", \"context_id\": 24, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 100}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(813,108,'UserRole',36,'created','{\"display_name\": \"user2@ggrc.com <-> WorkflowMember in wf-5\", \"context_id\": 28, \"created_at\": \"2016-11-10T16:49:49\", \"updated_at\": \"2016-11-10T16:49:49\", \"role_id\": 19, \"modified_by_id\": null, \"person_id\": 16, \"id\": 108}',NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',1,NULL,NULL,NULL,NULL),(814,3,'Context',37,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:51:07','2016-11-10 16:51:07',1,NULL,NULL,NULL,NULL),(815,7,'TaskGroup',37,'modified','{\"slug\": \"tg-7\", \"display_name\": \"tg-7\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-7\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 2, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 25, \"id\": 7, \"description\": \"test\"}',NULL,'2016-11-10 16:51:07','2016-11-10 16:51:07',1,NULL,NULL,NULL,NULL),(816,11,'TaskGroupTask',37,'created','{\"context_id\": 25, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:51:07\", \"contact_id\": 1, \"relative_end_day\": \"4\", \"id\": 11, \"task_group_id\": 7, \"task_type\": \"text\", \"display_name\": \"uoe<->tg-7\", \"object_approval\": false, \"title\": \"uoe\", \"modified_by_id\": 1, \"start_date\": \"2016-11-10\", \"description\": \"\", \"end_date\": \"2016-11-17\", \"secondary_contact_id\": null, \"response_options\": [], \"relative_start_day\": \"1\", \"slug\": \"TASK-11\", \"created_at\": \"2016-11-10T16:51:07\", \"relative_start_month\": null, \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:51:07','2016-11-10 16:51:07',1,NULL,NULL,NULL,NULL),(817,7,'TaskGroup',38,'modified','{\"slug\": \"tg-7\", \"display_name\": \"tg-7\", \"lock_task_order\": null, \"end_date\": null, \"title\": \"tg-7\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:49:46\", \"updated_at\": \"2016-11-10T16:49:46\", \"contact_id\": 15, \"sort_index\": \"\", \"workflow_id\": 2, \"start_date\": null, \"modified_by_id\": 1, \"context_id\": 25, \"id\": 7, \"description\": \"test\"}',NULL,'2016-11-10 16:51:09','2016-11-10 16:51:09',1,NULL,NULL,NULL,NULL),(818,3,'Context',38,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:51:09','2016-11-10 16:51:09',1,NULL,NULL,NULL,NULL),(819,12,'TaskGroupTask',38,'created','{\"context_id\": 25, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:51:09\", \"contact_id\": 1, \"relative_end_day\": \"4\", \"id\": 12, \"task_group_id\": 7, \"task_type\": \"text\", \"display_name\": \"uoeauaouoa<->tg-7\", \"object_approval\": false, \"title\": \"uoeauaouoa\", \"modified_by_id\": 1, \"start_date\": \"2016-11-10\", \"description\": \"\", \"end_date\": \"2016-11-17\", \"secondary_contact_id\": null, \"response_options\": [], \"relative_start_day\": \"1\", \"slug\": \"TASK-12\", \"created_at\": \"2016-11-10T16:51:09\", \"relative_start_month\": null, \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:51:09','2016-11-10 16:51:09',1,NULL,NULL,NULL,NULL),(820,3,'Context',39,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(821,2,'Workflow',39,'modified','{\"non_adjusted_next_cycle_start_date\": \"2016-11-14\", \"updated_at\": \"2016-11-10T16:51:19\", \"frequency\": \"weekly\", \"id\": 2, \"display_name\": \"wf-2\", \"object_approval\": false, \"title\": \"wf-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": null, \"status\": \"Active\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": true, \"slug\": \"wf-2\", \"kind\": null, \"next_cycle_start_date\": \"2016-11-14\", \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(822,19,'Notification',39,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-09\", \"object_id\": 3, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 19, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(823,23,'Notification',39,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 4, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 23, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(824,25,'Notification',39,'created','{\"notification_type_id\": 26, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"Workflow\", \"send_on\": \"2016-11-15\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 25, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(825,12,'Notification',39,'created','{\"notification_type_id\": 9, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 1, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 12, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(826,20,'Notification',39,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 3, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 20, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(827,29,'Notification',39,'created','{\"notification_type_id\": 26, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"TaskGroupTask\", \"send_on\": \"2016-11-14\", \"object_id\": 12, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 29, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(828,18,'Notification',39,'created','{\"notification_type_id\": 9, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 3, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 18, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(829,24,'Notification',39,'created','{\"notification_type_id\": 22, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"Workflow\", \"send_on\": \"2016-11-13\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 24, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(830,11,'Notification',39,'created','{\"notification_type_id\": 9, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"Cycle\", \"send_on\": \"2016-11-10\", \"object_id\": 1, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 11, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(831,22,'Notification',39,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-09\", \"object_id\": 4, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 22, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(832,14,'Notification',39,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 1, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 14, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(833,2,'CycleTaskGroup',39,'created','{\"task_group_id\": 7, \"status\": \"Assigned\", \"cycle_id\": 1, \"display_name\": \"tg-7\", \"description\": \"test\", \"end_date\": \"2016-11-10\", \"title\": \"tg-7\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-2\", \"updated_at\": \"2016-11-10T16:51:19\", \"next_due_date\": \"2016-11-10\", \"sort_index\": \"\", \"start_date\": \"2016-11-07\", \"contact_id\": 15, \"modified_by_id\": 15, \"context_id\": 25, \"created_at\": \"2016-11-10T16:51:18\", \"id\": 2}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(834,13,'Notification',39,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-09\", \"object_id\": 1, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 13, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(835,16,'Notification',39,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-09\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 16, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(836,17,'Notification',39,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 17, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(837,1,'Cycle',39,'created','{\"status\": \"Assigned\", \"slug\": \"CYCLE-1\", \"display_name\": \"wf-2\", \"description\": \"test\", \"end_date\": \"2016-11-10\", \"title\": \"wf-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:51:18\", \"updated_at\": \"2016-11-10T16:51:19\", \"contact_id\": null, \"start_date\": \"2016-11-07\", \"workflow_id\": 2, \"is_current\": true, \"next_due_date\": \"2016-11-10\", \"modified_by_id\": null, \"context_id\": 25, \"id\": 1}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(838,27,'Notification',39,'created','{\"notification_type_id\": 26, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"TaskGroupTask\", \"send_on\": \"2016-11-14\", \"object_id\": 8, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 27, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(839,2,'CycleTaskGroupObjectTask',39,'created','{\"verified_date\": null, \"cycle_task_group_id\": 1, \"updated_at\": \"2016-11-10T16:51:19\", \"contact_id\": 15, \"task_group_task_id\": 8, \"id\": 2, \"finished_date\": null, \"task_type\": \"menu\", \"display_name\": \"Weekly\", \"title\": \"Weekly\", \"modified_by_id\": 15, \"context_id\": 25, \"start_date\": \"2016-11-08\", \"status\": \"Assigned\", \"description\": null, \"end_date\": \"2016-11-10\", \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-2\", \"cycle_id\": 1, \"created_at\": \"2016-11-10T16:51:18\", \"sort_index\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(840,26,'Notification',39,'created','{\"notification_type_id\": 26, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"TaskGroupTask\", \"send_on\": \"2016-11-14\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 26, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(841,3,'CycleTaskGroupObjectTask',39,'created','{\"verified_date\": null, \"cycle_task_group_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"contact_id\": 1, \"task_group_task_id\": 11, \"id\": 3, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"uoe\", \"title\": \"uoe\", \"modified_by_id\": 15, \"context_id\": 25, \"start_date\": \"2016-11-07\", \"status\": \"Assigned\", \"description\": \"\", \"end_date\": \"2016-11-10\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-3\", \"cycle_id\": 1, \"created_at\": \"2016-11-10T16:51:18\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(842,4,'CycleTaskGroupObjectTask',39,'created','{\"verified_date\": null, \"cycle_task_group_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"contact_id\": 1, \"task_group_task_id\": 12, \"id\": 4, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"uoeauaouoa\", \"title\": \"uoeauaouoa\", \"modified_by_id\": 15, \"context_id\": 25, \"start_date\": \"2016-11-07\", \"status\": \"Assigned\", \"description\": \"\", \"end_date\": \"2016-11-10\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-4\", \"cycle_id\": 1, \"created_at\": \"2016-11-10T16:51:18\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(843,1,'CycleTaskGroupObjectTask',39,'created','{\"verified_date\": null, \"cycle_task_group_id\": 1, \"updated_at\": \"2016-11-10T16:51:19\", \"contact_id\": 15, \"task_group_task_id\": 2, \"id\": 1, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"Weekly\", \"title\": \"Weekly\", \"modified_by_id\": 15, \"context_id\": 25, \"start_date\": \"2016-11-08\", \"status\": \"Assigned\", \"description\": \"test\", \"end_date\": \"2016-11-10\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-1\", \"cycle_id\": 1, \"created_at\": \"2016-11-10T16:51:18\", \"sort_index\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(844,1,'CycleTaskGroup',39,'created','{\"task_group_id\": 2, \"status\": \"Assigned\", \"cycle_id\": 1, \"display_name\": \"tg-2\", \"description\": \"test\", \"end_date\": \"2016-11-10\", \"title\": \"tg-2\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-1\", \"updated_at\": \"2016-11-10T16:51:19\", \"next_due_date\": \"2016-11-10\", \"sort_index\": \"\", \"start_date\": \"2016-11-08\", \"contact_id\": 15, \"modified_by_id\": 15, \"context_id\": 25, \"created_at\": \"2016-11-10T16:51:18\", \"id\": 1}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(845,15,'Notification',39,'created','{\"notification_type_id\": 9, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 15, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(846,21,'Notification',39,'created','{\"notification_type_id\": 9, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 4, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 21, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(847,28,'Notification',39,'created','{\"notification_type_id\": 26, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:51:19\", \"object_type\": \"TaskGroupTask\", \"send_on\": \"2016-11-14\", \"object_id\": 11, \"updated_at\": \"2016-11-10T16:51:19\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 28, \"display_name\": \"\"}',NULL,'2016-11-10 16:51:19','2016-11-10 16:51:19',1,NULL,NULL,NULL,NULL),(848,8,'TaskGroupTask',40,'modified','{\"context_id\": 25, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:51:34\", \"contact_id\": 17, \"relative_end_day\": \"5\", \"id\": 8, \"task_group_id\": 2, \"task_type\": \"menu\", \"display_name\": \"Weekly<->tg-2\", \"object_approval\": false, \"title\": \"Weekly\", \"modified_by_id\": 1, \"start_date\": null, \"description\": null, \"end_date\": null, \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"relative_start_day\": \"2\", \"slug\": \"task-8\", \"created_at\": \"2016-11-10T16:49:46\", \"relative_start_month\": null, \"sort_index\": \"\"}',NULL,'2016-11-10 16:51:34','2016-11-10 16:51:34',1,NULL,NULL,NULL,NULL),(849,3,'Context',40,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:51:34','2016-11-10 16:51:34',1,NULL,NULL,NULL,NULL),(850,2,'Workflow',40,'modified','{\"non_adjusted_next_cycle_start_date\": \"2016-11-14\", \"updated_at\": \"2016-11-10T16:51:19\", \"frequency\": \"weekly\", \"id\": 2, \"display_name\": \"wf-2\", \"object_approval\": false, \"title\": \"wf-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": null, \"status\": \"Active\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": true, \"slug\": \"wf-2\", \"kind\": null, \"next_cycle_start_date\": \"2016-11-14\", \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:51:34','2016-11-10 16:51:34',1,NULL,NULL,NULL,NULL),(851,16,'WorkflowPerson',40,'created','{\"status\": \"Draft\", \"display_name\": \"user10@ggrc.com<->wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:51:34\", \"updated_at\": \"2016-11-10T16:51:34\", \"workflow_id\": 2, \"modified_by_id\": null, \"person_id\": 17, \"id\": 16}',NULL,'2016-11-10 16:51:34','2016-11-10 16:51:34',1,NULL,NULL,NULL,NULL),(852,119,'UserRole',40,'created','{\"display_name\": \"user10@ggrc.com <-> WorkflowMember in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:51:34\", \"updated_at\": \"2016-11-10T16:51:34\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 17, \"id\": 119}',NULL,'2016-11-10 16:51:34','2016-11-10 16:51:34',1,NULL,NULL,NULL,NULL),(853,3,'Context',41,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:51:50','2016-11-10 16:51:50',1,NULL,NULL,NULL,NULL),(854,2,'Workflow',41,'modified','{\"non_adjusted_next_cycle_start_date\": \"2016-11-14\", \"updated_at\": \"2016-11-10T16:51:19\", \"frequency\": \"weekly\", \"id\": 2, \"display_name\": \"wf-2\", \"object_approval\": false, \"title\": \"wf-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": null, \"status\": \"Active\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": true, \"slug\": \"wf-2\", \"kind\": null, \"next_cycle_start_date\": \"2016-11-14\", \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:51:50','2016-11-10 16:51:50',1,NULL,NULL,NULL,NULL),(855,12,'TaskGroupTask',41,'modified','{\"context_id\": 25, \"relative_end_month\": null, \"updated_at\": \"2016-11-10T16:51:50\", \"contact_id\": 20, \"relative_end_day\": \"4\", \"id\": 12, \"task_group_id\": 7, \"task_type\": \"text\", \"display_name\": \"uoeauaouoa<->tg-7\", \"object_approval\": false, \"title\": \"uoeauaouoa\", \"modified_by_id\": 1, \"start_date\": \"2016-11-10\", \"description\": \"\", \"end_date\": \"2016-11-17\", \"secondary_contact_id\": null, \"response_options\": [], \"relative_start_day\": \"1\", \"slug\": \"TASK-12\", \"created_at\": \"2016-11-10T16:51:09\", \"relative_start_month\": null, \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:51:50','2016-11-10 16:51:50',1,NULL,NULL,NULL,NULL),(856,17,'WorkflowPerson',41,'created','{\"status\": \"Draft\", \"display_name\": \"user13@ggrc.com<->wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:51:50\", \"updated_at\": \"2016-11-10T16:51:50\", \"workflow_id\": 2, \"modified_by_id\": null, \"person_id\": 20, \"id\": 17}',NULL,'2016-11-10 16:51:50','2016-11-10 16:51:50',1,NULL,NULL,NULL,NULL),(857,120,'UserRole',41,'created','{\"display_name\": \"user13@ggrc.com <-> WorkflowMember in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:51:50\", \"updated_at\": \"2016-11-10T16:51:50\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 20, \"id\": 120}',NULL,'2016-11-10 16:51:50','2016-11-10 16:51:50',1,NULL,NULL,NULL,NULL),(858,2,'Workflow',42,'modified','{\"non_adjusted_next_cycle_start_date\": \"2016-11-21\", \"updated_at\": \"2016-11-10T16:52:01\", \"frequency\": \"weekly\", \"id\": 2, \"display_name\": \"wf-2\", \"object_approval\": false, \"title\": \"wf-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": null, \"status\": \"Active\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": true, \"slug\": \"wf-2\", \"kind\": null, \"next_cycle_start_date\": \"2016-11-21\", \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(859,3,'Context',42,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(860,31,'Notification',42,'created','{\"notification_type_id\": 10, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 5, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 31, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(861,41,'Notification',42,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-16\", \"object_id\": 8, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 41, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(862,33,'Notification',42,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-18\", \"object_id\": 5, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 33, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(863,3,'CycleTaskGroup',42,'created','{\"task_group_id\": 2, \"status\": \"Assigned\", \"cycle_id\": 2, \"display_name\": \"tg-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"tg-2\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-3\", \"updated_at\": \"2016-11-10T16:52:01\", \"next_due_date\": \"2016-11-18\", \"sort_index\": \"\", \"start_date\": \"2016-11-15\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 3}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(864,35,'Notification',42,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-17\", \"object_id\": 6, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 35, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(865,8,'CycleTaskGroupObjectTask',42,'created','{\"verified_date\": null, \"cycle_task_group_id\": 4, \"updated_at\": \"2016-11-10T16:52:01\", \"contact_id\": 20, \"task_group_task_id\": 12, \"id\": 8, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"uoeauaouoa\", \"title\": \"uoeauaouoa\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-14\", \"status\": \"Assigned\", \"description\": \"\", \"end_date\": \"2016-11-17\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-8\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(866,38,'Notification',42,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-16\", \"object_id\": 7, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 38, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(867,42,'Notification',42,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-17\", \"object_id\": 8, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 42, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(868,6,'CycleTaskGroupObjectTask',42,'created','{\"verified_date\": null, \"cycle_task_group_id\": 3, \"updated_at\": \"2016-11-10T16:52:01\", \"contact_id\": 17, \"task_group_task_id\": 8, \"id\": 6, \"finished_date\": null, \"task_type\": \"menu\", \"display_name\": \"Weekly\", \"title\": \"Weekly\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-15\", \"status\": \"Assigned\", \"description\": null, \"end_date\": \"2016-11-18\", \"secondary_contact_id\": null, \"response_options\": [\"test\"], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-6\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(869,40,'Notification',42,'created','{\"notification_type_id\": 10, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 8, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 40, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(870,2,'Cycle',42,'created','{\"status\": \"Assigned\", \"slug\": \"CYCLE-2\", \"display_name\": \"wf-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"wf-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:52:01\", \"updated_at\": \"2016-11-10T16:52:02\", \"contact_id\": null, \"start_date\": \"2016-11-14\", \"workflow_id\": 2, \"is_current\": true, \"next_due_date\": \"2016-11-17\", \"modified_by_id\": 1, \"context_id\": 25, \"id\": 2}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(871,37,'Notification',42,'created','{\"notification_type_id\": 10, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 7, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 37, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(872,36,'Notification',42,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-18\", \"object_id\": 6, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 36, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(873,5,'CycleTaskGroupObjectTask',42,'created','{\"verified_date\": null, \"cycle_task_group_id\": 3, \"updated_at\": \"2016-11-10T16:52:01\", \"contact_id\": 15, \"task_group_task_id\": 2, \"id\": 5, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"Weekly\", \"title\": \"Weekly\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-15\", \"status\": \"Assigned\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-5\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(874,30,'Notification',42,'created','{\"notification_type_id\": 10, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"Cycle\", \"send_on\": \"2016-11-10\", \"object_id\": 2, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 30, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(875,4,'CycleTaskGroup',42,'created','{\"task_group_id\": 7, \"status\": \"Assigned\", \"cycle_id\": 2, \"display_name\": \"tg-7\", \"description\": \"test\", \"end_date\": \"2016-11-17\", \"title\": \"tg-7\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-4\", \"updated_at\": \"2016-11-10T16:52:01\", \"next_due_date\": \"2016-11-17\", \"sort_index\": \"\", \"start_date\": \"2016-11-14\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 4}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(876,32,'Notification',42,'created','{\"notification_type_id\": 13, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-17\", \"object_id\": 5, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 32, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(877,7,'CycleTaskGroupObjectTask',42,'created','{\"verified_date\": null, \"cycle_task_group_id\": 4, \"updated_at\": \"2016-11-10T16:52:01\", \"contact_id\": 1, \"task_group_task_id\": 11, \"id\": 7, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"uoe\", \"title\": \"uoe\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-14\", \"status\": \"Assigned\", \"description\": \"\", \"end_date\": \"2016-11-17\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": \"[]\", \"slug\": \"CYCLETASK-7\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(878,39,'Notification',42,'created','{\"notification_type_id\": 17, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-17\", \"object_id\": 7, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 39, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(879,34,'Notification',42,'created','{\"notification_type_id\": 10, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:02\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 6, \"updated_at\": \"2016-11-10T16:52:02\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 34, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:02','2016-11-10 16:52:02',1,NULL,NULL,NULL,NULL),(880,4,'CycleTaskGroup',43,'modified','{\"task_group_id\": 7, \"status\": \"Assigned\", \"cycle_id\": 2, \"display_name\": \"tg-7\", \"description\": \"test\", \"end_date\": \"2016-11-17\", \"title\": \"tg-7\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-4\", \"updated_at\": \"2016-11-10T16:52:45\", \"next_due_date\": \"2016-11-17\", \"sort_index\": \"\", \"start_date\": \"2016-11-14\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 4}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(881,2,'Workflow',43,'modified','{\"non_adjusted_next_cycle_start_date\": \"2016-11-21\", \"updated_at\": \"2016-11-10T16:52:01\", \"frequency\": \"weekly\", \"id\": 2, \"display_name\": \"wf-2\", \"object_approval\": false, \"title\": \"wf-2\", \"custom_attributes\": [], \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": null, \"status\": \"Active\", \"notify_on_change\": true, \"description\": \"test\", \"end_date\": null, \"recurrences\": true, \"slug\": \"wf-2\", \"kind\": null, \"next_cycle_start_date\": \"2016-11-21\", \"notify_custom_message\": \"this is super custom\", \"created_at\": \"2016-11-10T16:49:45\", \"custom_attribute_definitions\": [], \"is_old_workflow\": false}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(882,2,'Cycle',43,'modified','{\"status\": \"Assigned\", \"slug\": \"CYCLE-2\", \"display_name\": \"wf-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"wf-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:52:01\", \"updated_at\": \"2016-11-10T16:52:45\", \"contact_id\": null, \"start_date\": \"2016-11-14\", \"workflow_id\": 2, \"is_current\": true, \"next_due_date\": \"2016-11-17\", \"modified_by_id\": 1, \"context_id\": 25, \"id\": 2}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(883,3,'CycleTaskGroup',43,'modified','{\"task_group_id\": 2, \"status\": \"Assigned\", \"cycle_id\": 2, \"display_name\": \"tg-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"tg-2\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-3\", \"updated_at\": \"2016-11-10T16:52:45\", \"next_due_date\": \"2016-11-18\", \"sort_index\": \"\", \"start_date\": \"2016-11-15\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 3}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(884,3,'Context',43,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(885,7,'CycleTaskGroupObjectTask',43,'modified','{\"verified_date\": null, \"cycle_task_group_id\": 4, \"updated_at\": \"2016-11-10T16:52:45\", \"contact_id\": 27, \"task_group_task_id\": 11, \"id\": 7, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"uoe\", \"title\": \"uoe\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-14T00:00:00\", \"status\": \"Assigned\", \"description\": \"\", \"end_date\": \"2016-11-17T00:00:00\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": [], \"slug\": \"CYCLETASK-7\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(886,121,'UserRole',43,'created','{\"display_name\": \"user20@ggrc.com <-> WorkflowMember in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:45\", \"updated_at\": \"2016-11-10T16:52:45\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 27, \"id\": 121}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(887,18,'WorkflowPerson',43,'created','{\"status\": \"Draft\", \"display_name\": \"user20@ggrc.com<->wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:45\", \"updated_at\": \"2016-11-10T16:52:45\", \"workflow_id\": 2, \"modified_by_id\": null, \"person_id\": 27, \"id\": 18}',NULL,'2016-11-10 16:52:45','2016-11-10 16:52:45',1,NULL,NULL,NULL,NULL),(888,3,'Context',44,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(889,3,'CycleTaskGroup',44,'modified','{\"task_group_id\": 2, \"status\": \"Assigned\", \"cycle_id\": 2, \"display_name\": \"tg-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"tg-2\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-3\", \"updated_at\": \"2016-11-10T16:52:49\", \"next_due_date\": \"2016-11-18\", \"sort_index\": \"\", \"start_date\": \"2016-11-15\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 3}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(890,8,'CycleTaskGroupObjectTask',44,'modified','{\"verified_date\": null, \"cycle_task_group_id\": 4, \"updated_at\": \"2016-11-10T16:52:49\", \"contact_id\": 20, \"task_group_task_id\": 12, \"id\": 8, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"uoeauaouoa\", \"title\": \"uoeauaouoa\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-14T00:00:00\", \"status\": \"InProgress\", \"description\": \"\", \"end_date\": \"2016-11-17T00:00:00\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": [], \"slug\": \"CYCLETASK-8\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(891,2,'Cycle',44,'modified','{\"status\": \"InProgress\", \"slug\": \"CYCLE-2\", \"display_name\": \"wf-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"wf-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:52:01\", \"updated_at\": \"2016-11-10T16:52:49\", \"contact_id\": null, \"start_date\": \"2016-11-14\", \"workflow_id\": 2, \"is_current\": true, \"next_due_date\": \"2016-11-17\", \"modified_by_id\": 1, \"context_id\": 25, \"id\": 2}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(892,4,'CycleTaskGroup',44,'modified','{\"task_group_id\": 7, \"status\": \"InProgress\", \"cycle_id\": 2, \"display_name\": \"tg-7\", \"description\": \"test\", \"end_date\": \"2016-11-17\", \"title\": \"tg-7\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-4\", \"updated_at\": \"2016-11-10T16:52:49\", \"next_due_date\": \"2016-11-17\", \"sort_index\": \"\", \"start_date\": \"2016-11-14\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 4}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(893,2,'Cycle',45,'modified','{\"status\": \"InProgress\", \"slug\": \"CYCLE-2\", \"display_name\": \"wf-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"wf-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:52:01\", \"updated_at\": \"2016-11-10T16:52:49\", \"contact_id\": null, \"start_date\": \"2016-11-14\", \"workflow_id\": 2, \"is_current\": true, \"next_due_date\": \"2016-11-17\", \"modified_by_id\": 1, \"context_id\": 25, \"id\": 2}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(894,8,'CycleTaskGroupObjectTask',45,'modified','{\"verified_date\": null, \"cycle_task_group_id\": 4, \"updated_at\": \"2016-11-10T16:52:49\", \"contact_id\": 20, \"task_group_task_id\": 12, \"id\": 8, \"finished_date\": \"2016-11-10T16:52:49.726830\", \"task_type\": \"text\", \"display_name\": \"uoeauaouoa\", \"title\": \"uoeauaouoa\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-14T00:00:00\", \"status\": \"Finished\", \"description\": \"\", \"end_date\": \"2016-11-17T00:00:00\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": [], \"slug\": \"CYCLETASK-8\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(895,3,'Context',45,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(896,3,'CycleTaskGroup',45,'modified','{\"task_group_id\": 2, \"status\": \"Assigned\", \"cycle_id\": 2, \"display_name\": \"tg-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"tg-2\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-3\", \"updated_at\": \"2016-11-10T16:52:49\", \"next_due_date\": \"2016-11-18\", \"sort_index\": \"\", \"start_date\": \"2016-11-15\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 3}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(897,4,'CycleTaskGroup',45,'modified','{\"task_group_id\": 7, \"status\": \"InProgress\", \"cycle_id\": 2, \"display_name\": \"tg-7\", \"description\": \"test\", \"end_date\": \"2016-11-17\", \"title\": \"tg-7\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-4\", \"updated_at\": \"2016-11-10T16:52:49\", \"next_due_date\": \"2016-11-17\", \"sort_index\": \"\", \"start_date\": \"2016-11-14\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 4}',NULL,'2016-11-10 16:52:49','2016-11-10 16:52:49',1,NULL,NULL,NULL,NULL),(898,3,'CycleTaskGroup',46,'modified','{\"task_group_id\": 2, \"status\": \"Assigned\", \"cycle_id\": 2, \"display_name\": \"tg-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"tg-2\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-3\", \"updated_at\": \"2016-11-10T16:52:51\", \"next_due_date\": \"2016-11-18\", \"sort_index\": \"\", \"start_date\": \"2016-11-15\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 3}',NULL,'2016-11-10 16:52:51','2016-11-10 16:52:51',1,NULL,NULL,NULL,NULL),(899,3,'Context',46,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:52:51','2016-11-10 16:52:51',1,NULL,NULL,NULL,NULL),(900,4,'CycleTaskGroup',46,'modified','{\"task_group_id\": 7, \"status\": \"InProgress\", \"cycle_id\": 2, \"display_name\": \"tg-7\", \"description\": \"test\", \"end_date\": \"2016-11-17\", \"title\": \"tg-7\", \"secondary_contact_id\": null, \"slug\": \"CYCLEGROUP-4\", \"updated_at\": \"2016-11-10T16:52:51\", \"next_due_date\": \"2016-11-17\", \"sort_index\": \"\", \"start_date\": \"2016-11-14\", \"contact_id\": 15, \"modified_by_id\": 1, \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:01\", \"id\": 4}',NULL,'2016-11-10 16:52:51','2016-11-10 16:52:51',1,NULL,NULL,NULL,NULL),(901,2,'Cycle',46,'modified','{\"status\": \"InProgress\", \"slug\": \"CYCLE-2\", \"display_name\": \"wf-2\", \"description\": \"test\", \"end_date\": \"2016-11-18\", \"title\": \"wf-2\", \"secondary_contact_id\": null, \"created_at\": \"2016-11-10T16:52:01\", \"updated_at\": \"2016-11-10T16:52:51\", \"contact_id\": null, \"start_date\": \"2016-11-14\", \"workflow_id\": 2, \"is_current\": true, \"next_due_date\": \"2016-11-17\", \"modified_by_id\": 1, \"context_id\": 25, \"id\": 2}',NULL,'2016-11-10 16:52:51','2016-11-10 16:52:51',1,NULL,NULL,NULL,NULL),(902,8,'CycleTaskGroupObjectTask',46,'modified','{\"verified_date\": null, \"cycle_task_group_id\": 4, \"updated_at\": \"2016-11-10T16:52:51\", \"contact_id\": 20, \"task_group_task_id\": 12, \"id\": 8, \"finished_date\": null, \"task_type\": \"text\", \"display_name\": \"uoeauaouoa\", \"title\": \"uoeauaouoa\", \"modified_by_id\": 1, \"context_id\": 25, \"start_date\": \"2016-11-14T00:00:00\", \"status\": \"Declined\", \"description\": \"\", \"end_date\": \"2016-11-17T00:00:00\", \"secondary_contact_id\": null, \"response_options\": [], \"selected_response_options\": [], \"slug\": \"CYCLETASK-8\", \"cycle_id\": 2, \"created_at\": \"2016-11-10T16:52:01\", \"sort_index\": \"4503599627370495.5\"}',NULL,'2016-11-10 16:52:51','2016-11-10 16:52:51',1,NULL,NULL,NULL,NULL),(903,43,'Notification',46,'created','{\"notification_type_id\": 20, \"sent_at\": null, \"context_id\": null, \"created_at\": \"2016-11-10T16:52:51\", \"object_type\": \"CycleTaskGroupObjectTask\", \"send_on\": \"2016-11-10\", \"object_id\": 8, \"updated_at\": \"2016-11-10T16:52:51\", \"custom_message\": null, \"modified_by_id\": null, \"force_notifications\": false, \"id\": 43, \"display_name\": \"\"}',NULL,'2016-11-10 16:52:51','2016-11-10 16:52:51',1,NULL,NULL,NULL,NULL),(904,3,'Context',47,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:53:35','2016-11-10 16:53:35',1,NULL,NULL,NULL,NULL),(905,121,'UserRole',47,'deleted','{\"display_name\": \"user20@ggrc.com <-> WorkflowMember in wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:45\", \"updated_at\": \"2016-11-10T16:52:45\", \"role_id\": 19, \"modified_by_id\": 1, \"person_id\": 27, \"id\": 121}',NULL,'2016-11-10 16:53:35','2016-11-10 16:53:35',1,NULL,NULL,NULL,NULL),(906,3,'Context',48,'modified','{\"display_name\": \"Personal Context for user@example.com\", \"name\": \"Personal Context for user@example.com\", \"context_id\": 33, \"created_at\": \"2016-11-10T16:49:15\", \"updated_at\": \"2016-11-10T16:49:46\", \"related_object_type\": \"Person\", \"modified_by_id\": 1, \"id\": 3, \"related_object_id\": 1, \"description\": \"\"}',NULL,'2016-11-10 16:53:40','2016-11-10 16:53:40',1,NULL,NULL,NULL,NULL),(907,18,'WorkflowPerson',48,'deleted','{\"status\": \"Draft\", \"display_name\": \"user20@ggrc.com<->wf-2\", \"context_id\": 25, \"created_at\": \"2016-11-10T16:52:45\", \"updated_at\": \"2016-11-10T16:52:45\", \"workflow_id\": 2, \"modified_by_id\": null, \"person_id\": 27, \"id\": 18}',NULL,'2016-11-10 16:53:40','2016-11-10 16:53:40',1,NULL,NULL,NULL,NULL);
  2213. /*!40000 ALTER TABLE `revisions` ENABLE KEYS */;
  2214. UNLOCK TABLES;
  2215.  
  2216. --
  2217. -- Table structure for table `risk_assessments`
  2218. --
  2219.  
  2220. DROP TABLE IF EXISTS `risk_assessments`;
  2221. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2222. /*!40101 SET character_set_client = utf8 */;
  2223. CREATE TABLE `risk_assessments` (
  2224. `id` int(11) NOT NULL AUTO_INCREMENT,
  2225. `title` varchar(250) NOT NULL,
  2226. `description` text,
  2227. `notes` text,
  2228. `ra_manager_id` int(11) DEFAULT NULL,
  2229. `ra_counsel_id` int(11) DEFAULT NULL,
  2230. `start_date` date DEFAULT NULL,
  2231. `end_date` date DEFAULT NULL,
  2232. `created_at` datetime NOT NULL,
  2233. `modified_by_id` int(11) DEFAULT NULL,
  2234. `updated_at` datetime NOT NULL,
  2235. `context_id` int(11) DEFAULT NULL,
  2236. `program_id` int(11) NOT NULL,
  2237. `slug` varchar(250) NOT NULL,
  2238. PRIMARY KEY (`id`),
  2239. UNIQUE KEY `unique_slug` (`slug`),
  2240. KEY `fk_risk_assessments_manager_person_id` (`ra_manager_id`),
  2241. KEY `fk_risk_assessments_counsel_person_id` (`ra_counsel_id`),
  2242. KEY `fk_risk_assessments_contexts` (`context_id`),
  2243. KEY `ix_risk_assessments_updated_at` (`updated_at`),
  2244. CONSTRAINT `fk_risk_assessments_counsel_person_id` FOREIGN KEY (`ra_counsel_id`) REFERENCES `people` (`id`),
  2245. CONSTRAINT `fk_risk_assessments_manager_person_id` FOREIGN KEY (`ra_manager_id`) REFERENCES `people` (`id`),
  2246. CONSTRAINT `risk_assessments_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  2247. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2248. /*!40101 SET character_set_client = @saved_cs_client */;
  2249.  
  2250. --
  2251. -- Dumping data for table `risk_assessments`
  2252. --
  2253.  
  2254. LOCK TABLES `risk_assessments` WRITE;
  2255. /*!40000 ALTER TABLE `risk_assessments` DISABLE KEYS */;
  2256. /*!40000 ALTER TABLE `risk_assessments` ENABLE KEYS */;
  2257. UNLOCK TABLES;
  2258.  
  2259. --
  2260. -- Table structure for table `risk_objects`
  2261. --
  2262.  
  2263. DROP TABLE IF EXISTS `risk_objects`;
  2264. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2265. /*!40101 SET character_set_client = utf8 */;
  2266. CREATE TABLE `risk_objects` (
  2267. `id` int(11) NOT NULL AUTO_INCREMENT,
  2268. `risk_id` int(11) NOT NULL,
  2269. `object_id` int(11) NOT NULL,
  2270. `object_type` varchar(250) NOT NULL,
  2271. `status` varchar(250) DEFAULT NULL,
  2272. `created_at` datetime NOT NULL,
  2273. `modified_by_id` int(11) DEFAULT NULL,
  2274. `updated_at` datetime NOT NULL,
  2275. `context_id` int(11) DEFAULT NULL,
  2276. `secondary_contact_id` int(11) DEFAULT NULL,
  2277. PRIMARY KEY (`id`),
  2278. UNIQUE KEY `risk_id` (`risk_id`,`object_id`,`object_type`),
  2279. KEY `fk_risk_objects_contexts` (`context_id`),
  2280. KEY `ix_risk_id` (`risk_id`),
  2281. KEY `fk_risk_objects_secondary_contact` (`secondary_contact_id`),
  2282. CONSTRAINT `risk_objects_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2283. CONSTRAINT `risk_objects_ibfk_2` FOREIGN KEY (`risk_id`) REFERENCES `risks` (`id`)
  2284. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2285. /*!40101 SET character_set_client = @saved_cs_client */;
  2286.  
  2287. --
  2288. -- Dumping data for table `risk_objects`
  2289. --
  2290.  
  2291. LOCK TABLES `risk_objects` WRITE;
  2292. /*!40000 ALTER TABLE `risk_objects` DISABLE KEYS */;
  2293. /*!40000 ALTER TABLE `risk_objects` ENABLE KEYS */;
  2294. UNLOCK TABLES;
  2295.  
  2296. --
  2297. -- Table structure for table `risks`
  2298. --
  2299.  
  2300. DROP TABLE IF EXISTS `risks`;
  2301. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2302. /*!40101 SET character_set_client = utf8 */;
  2303. CREATE TABLE `risks` (
  2304. `id` int(11) NOT NULL AUTO_INCREMENT,
  2305. `slug` varchar(250) NOT NULL,
  2306. `created_at` datetime NOT NULL,
  2307. `modified_by_id` int(11) DEFAULT NULL,
  2308. `updated_at` datetime NOT NULL,
  2309. `context_id` int(11) DEFAULT NULL,
  2310. `title` varchar(250) NOT NULL,
  2311. `contact_id` int(11) DEFAULT NULL,
  2312. `description` text NOT NULL,
  2313. `start_date` date DEFAULT NULL,
  2314. `end_date` date DEFAULT NULL,
  2315. `status` varchar(250) DEFAULT NULL,
  2316. `secondary_contact_id` int(11) DEFAULT NULL,
  2317. `os_state` varchar(250) NOT NULL,
  2318. `notes` text,
  2319. `url` varchar(250) DEFAULT NULL,
  2320. `reference_url` varchar(250) DEFAULT NULL,
  2321. PRIMARY KEY (`id`),
  2322. UNIQUE KEY `uq_risks` (`slug`),
  2323. UNIQUE KEY `uq_t_risks` (`title`),
  2324. KEY `fk_risks_contexts` (`context_id`),
  2325. KEY `fk_risks_secondary_contact` (`secondary_contact_id`),
  2326. CONSTRAINT `risks_ibfk_1` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  2327. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  2328. /*!40101 SET character_set_client = @saved_cs_client */;
  2329.  
  2330. --
  2331. -- Dumping data for table `risks`
  2332. --
  2333.  
  2334. LOCK TABLES `risks` WRITE;
  2335. /*!40000 ALTER TABLE `risks` DISABLE KEYS */;
  2336. INSERT INTO `risks` VALUES (1,'ra-1','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-1',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(2,'ra-2','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-2',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(3,'ra-3','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-3',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(4,'ra-4','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-4',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(5,'ra-5','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-5',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(6,'ra-6','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-6',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(7,'rra-7','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'rra-7',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(8,'ra-8','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-8',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(9,'ra-9','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-9',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL),(10,'ra-10','2016-11-10 16:49:43',1,'2016-11-10 16:49:43',NULL,'ra-10',NULL,'test','2015-07-01','2015-07-15','Draft',NULL,'Draft','this is a note',NULL,NULL);
  2337. /*!40000 ALTER TABLE `risks` ENABLE KEYS */;
  2338. UNLOCK TABLES;
  2339.  
  2340. --
  2341. -- Table structure for table `roles`
  2342. --
  2343.  
  2344. DROP TABLE IF EXISTS `roles`;
  2345. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2346. /*!40101 SET character_set_client = utf8 */;
  2347. CREATE TABLE `roles` (
  2348. `id` int(11) NOT NULL AUTO_INCREMENT,
  2349. `name` varchar(128) NOT NULL,
  2350. `permissions_json` text NOT NULL,
  2351. `description` text,
  2352. `modified_by_id` int(11) DEFAULT NULL,
  2353. `created_at` datetime NOT NULL,
  2354. `updated_at` datetime NOT NULL,
  2355. `context_id` int(11) DEFAULT NULL,
  2356. `scope` varchar(64) DEFAULT NULL,
  2357. `role_order` int(11) DEFAULT NULL,
  2358. PRIMARY KEY (`id`),
  2359. KEY `fk_roles_contexts` (`context_id`),
  2360. KEY `ix_roles_updated_at` (`updated_at`)
  2361. ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
  2362. /*!40101 SET character_set_client = @saved_cs_client */;
  2363.  
  2364. --
  2365. -- Dumping data for table `roles`
  2366. --
  2367.  
  2368. LOCK TABLES `roles` WRITE;
  2369. /*!40000 ALTER TABLE `roles` DISABLE KEYS */;
  2370. INSERT INTO `roles` VALUES (1,'ProgramOwner','CODE DECLARED ROLE','User with authorization to peform administrative tasks such as associating users to roles within the scope of of a program.<br/><br/>When a person creates a program they are automatically given the ProgramOwner role. This allows them to Edit, Delete, or Map objects to the Program. It also allows them to add people and assign them roles when their programs are private. ProgramOwner is the most powerful role.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Private Program',1),(2,'ProgramEditor','CODE DECLARED ROLE','A user with authorization to edit mapping objects related to an access controlled program.<br/><br/>When a person has this role they can map and unmap objects to the Program and edit the Program info, but they are unable to delete the Program or assign other people roles for that program.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Private Program',2),(3,'ProgramReader','CODE DECLARED ROLE','A user with authorization to read mapping objects related to an access controlled Program.<br/><br/>This is essentially a view only role. A person with this role can access and view an otherwise private program, but they cannot map to or edit that program in any way.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Private Program',3),(5,'Reader','CODE DECLARED ROLE','This role grants a user basic, read-only, access permission to a gGRC instance.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'System',5),(6,'Editor','CODE DECLARED ROLE','Global Editor',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'System',6),(8,'Administrator','CODE DECLARED ROLE','System Administrator with super-user privileges',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Admin',8),(9,'AuditorReader','CODE DECLARED ROLE','A user with Auditor role for a program audit will also have this role in the default object context so that the auditor will have access to the objects required to perform the audit.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'System Implied',9),(10,'AuditorProgramReader','CODE DECLARED ROLE','A user with Auditor role for a program audit will also have this role in the program context so that the auditor will have access to the private program information and mappings required to perform the audit.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Private Program Implied',10),(11,'ProgramAuditOwner','CODE DECLARED ROLE','A user with the ProgramOwner role for a private program will also have this role in the audit context for any audit created for that program.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Audit Implied',11),(12,'ProgramAuditEditor','CODE DECLARED ROLE','A user with the ProgramEditor role for a private program will also have this role in the audit context for any audit created for that program.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Audit Implied',12),(13,'ProgramAuditReader','CODE DECLARED ROLE','A user with the ProgramReader role for a private program will also have this role in the audit context for any audit created for that program.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Audit Implied',13),(14,'Auditor','CODE DECLARED ROLE','The permissions required by an auditor to access relevant resources for the program being audited.',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Audit',14),(15,'ProgramBasicReader','CODE DECLARED ROLE','Allow any user assigned a role in a program the ability to read Role resources.',1,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Program Implied',15),(16,'ProgramMappingEditor','CODE DECLARED ROLE','\n This role grants a user permission to edit program mappings.\n ',1,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'Private Program Implied',16),(17,'Creator','CODE DECLARED ROLE','Global creator',NULL,'2016-11-10 16:48:53','2016-11-10 16:48:53',NULL,'System',4),(18,'WorkflowOwner','CODE DECLARED ROLE','This role grants a user permission to edit workflow mappings and details',1,'2016-11-10 16:48:55','2016-11-10 16:48:55',NULL,'Workflow',NULL),(19,'WorkflowMember','CODE DECLARED ROLE','This role grants a user permission to edit workflow mappings',1,'2016-11-10 16:48:55','2016-11-10 16:48:55',NULL,'Workflow',NULL),(20,'BasicWorkflowReader','CODE DECLARED ROLE',' ',1,'2016-11-10 16:48:55','2016-11-10 16:48:55',NULL,'Workflow Implied',NULL),(21,'WorkflowBasicReader','CODE DECLARED ROLE',' ',1,'2016-11-10 16:48:55','2016-11-10 16:48:55',NULL,'Workflow Implied',NULL);
  2371. /*!40000 ALTER TABLE `roles` ENABLE KEYS */;
  2372. UNLOCK TABLES;
  2373.  
  2374. --
  2375. -- Table structure for table `sections`
  2376. --
  2377.  
  2378. DROP TABLE IF EXISTS `sections`;
  2379. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2380. /*!40101 SET character_set_client = utf8 */;
  2381. CREATE TABLE `sections` (
  2382. `id` int(11) NOT NULL AUTO_INCREMENT,
  2383. `modified_by_id` int(11) DEFAULT NULL,
  2384. `created_at` datetime NOT NULL,
  2385. `updated_at` datetime NOT NULL,
  2386. `description` text,
  2387. `url` varchar(250) DEFAULT NULL,
  2388. `slug` varchar(250) NOT NULL,
  2389. `title` varchar(250) NOT NULL,
  2390. `na` tinyint(1) NOT NULL,
  2391. `notes` text,
  2392. `parent_id` int(11) DEFAULT NULL,
  2393. `context_id` int(11) DEFAULT NULL,
  2394. `contact_id` int(11) DEFAULT NULL,
  2395. `reference_url` varchar(250) DEFAULT NULL,
  2396. `secondary_contact_id` int(11) DEFAULT NULL,
  2397. `os_state` varchar(16) NOT NULL,
  2398. `status` varchar(250) DEFAULT NULL,
  2399. `end_date` date DEFAULT NULL,
  2400. `start_date` date DEFAULT NULL,
  2401. PRIMARY KEY (`id`),
  2402. UNIQUE KEY `uq_sections` (`slug`),
  2403. UNIQUE KEY `uq_t_sections` (`title`),
  2404. KEY `parent_id` (`parent_id`),
  2405. KEY `fk_sections_contexts` (`context_id`),
  2406. KEY `fk_sections_contact` (`contact_id`),
  2407. KEY `ix_sections_updated_at` (`updated_at`),
  2408. KEY `fk_sections_secondary_contact` (`secondary_contact_id`),
  2409. CONSTRAINT `fk_sections_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2410. CONSTRAINT `sections_ibfk_2` FOREIGN KEY (`parent_id`) REFERENCES `sections` (`id`)
  2411. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  2412. /*!40101 SET character_set_client = @saved_cs_client */;
  2413.  
  2414. --
  2415. -- Dumping data for table `sections`
  2416. --
  2417.  
  2418. LOCK TABLES `sections` WRITE;
  2419. /*!40000 ALTER TABLE `sections` DISABLE KEYS */;
  2420. INSERT INTO `sections` VALUES (1,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-1','sec-1',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Draft',NULL,NULL),(2,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-2','sec-2',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Final',NULL,NULL),(3,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-3','sec-3',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Effective',NULL,NULL),(4,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-4','sec-4',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Ineffective',NULL,NULL),(5,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-5','sec-5',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Launched',NULL,NULL),(6,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-6','sec-6',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Not Launched',NULL,NULL),(7,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-7','sec-7',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','In Scope',NULL,NULL),(8,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-8','sec-8',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Not in Scope',NULL,NULL),(9,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-9','sec-9',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Deprecated',NULL,NULL),(10,1,'2016-11-10 16:49:45','2016-11-10 16:49:48','test','google.com','sec-10','sec-10',0,'this is a note',NULL,NULL,15,'ggrc.com',16,'Modified','Draft',NULL,NULL);
  2421. /*!40000 ALTER TABLE `sections` ENABLE KEYS */;
  2422. UNLOCK TABLES;
  2423.  
  2424. --
  2425. -- Table structure for table `snapshots`
  2426. --
  2427.  
  2428. DROP TABLE IF EXISTS `snapshots`;
  2429. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2430. /*!40101 SET character_set_client = utf8 */;
  2431. CREATE TABLE `snapshots` (
  2432. `id` int(11) NOT NULL AUTO_INCREMENT,
  2433. `parent_id` int(11) NOT NULL,
  2434. `parent_type` varchar(250) NOT NULL,
  2435. `child_id` int(11) NOT NULL,
  2436. `child_type` varchar(250) NOT NULL,
  2437. `revision_id` int(11) NOT NULL,
  2438. `context_id` int(11) DEFAULT NULL,
  2439. `created_at` datetime NOT NULL,
  2440. `updated_at` datetime NOT NULL,
  2441. `modified_by_id` int(11) DEFAULT NULL,
  2442. PRIMARY KEY (`id`),
  2443. UNIQUE KEY `parent_type` (`parent_type`,`parent_id`,`child_type`,`child_id`),
  2444. KEY `revision_id` (`revision_id`),
  2445. KEY `ix_snapshots_parent` (`parent_type`,`parent_id`),
  2446. KEY `ix_snapshots_child` (`child_type`,`child_id`),
  2447. KEY `fk_snapshots_contexts` (`context_id`),
  2448. KEY `ix_snapshots_updated_at` (`updated_at`),
  2449. CONSTRAINT `snapshots_ibfk_1` FOREIGN KEY (`revision_id`) REFERENCES `revisions` (`id`)
  2450. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2451. /*!40101 SET character_set_client = @saved_cs_client */;
  2452.  
  2453. --
  2454. -- Dumping data for table `snapshots`
  2455. --
  2456.  
  2457. LOCK TABLES `snapshots` WRITE;
  2458. /*!40000 ALTER TABLE `snapshots` DISABLE KEYS */;
  2459. /*!40000 ALTER TABLE `snapshots` ENABLE KEYS */;
  2460. UNLOCK TABLES;
  2461.  
  2462. --
  2463. -- Table structure for table `systems`
  2464. --
  2465.  
  2466. DROP TABLE IF EXISTS `systems`;
  2467. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2468. /*!40101 SET character_set_client = utf8 */;
  2469. CREATE TABLE `systems` (
  2470. `id` int(11) NOT NULL AUTO_INCREMENT,
  2471. `modified_by_id` int(11) DEFAULT NULL,
  2472. `created_at` datetime NOT NULL,
  2473. `updated_at` datetime NOT NULL,
  2474. `description` text,
  2475. `url` varchar(250) DEFAULT NULL,
  2476. `start_date` date DEFAULT NULL,
  2477. `end_date` date DEFAULT NULL,
  2478. `slug` varchar(250) NOT NULL,
  2479. `title` varchar(250) NOT NULL,
  2480. `infrastructure` tinyint(1) DEFAULT NULL,
  2481. `contact_id` int(11) DEFAULT NULL,
  2482. `is_biz_process` tinyint(1) DEFAULT NULL,
  2483. `version` varchar(250) DEFAULT NULL,
  2484. `notes` text,
  2485. `network_zone_id` int(11) DEFAULT NULL,
  2486. `context_id` int(11) DEFAULT NULL,
  2487. `status` varchar(250) DEFAULT NULL,
  2488. `reference_url` varchar(250) DEFAULT NULL,
  2489. `secondary_contact_id` int(11) DEFAULT NULL,
  2490. `os_state` varchar(16) NOT NULL,
  2491. PRIMARY KEY (`id`),
  2492. UNIQUE KEY `uq_systems` (`slug`),
  2493. UNIQUE KEY `uq_t_systems` (`title`),
  2494. KEY `fk_systems_contexts` (`context_id`),
  2495. KEY `fk_systems_contact` (`contact_id`),
  2496. KEY `ix_systems_is_biz_process` (`is_biz_process`),
  2497. KEY `ix_systems_updated_at` (`updated_at`),
  2498. KEY `fk_systems_secondary_contact` (`secondary_contact_id`),
  2499. CONSTRAINT `fk_systems_contexts` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  2500. ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
  2501. /*!40101 SET character_set_client = @saved_cs_client */;
  2502.  
  2503. --
  2504. -- Dumping data for table `systems`
  2505. --
  2506.  
  2507. LOCK TABLES `systems` WRITE;
  2508. /*!40000 ALTER TABLE `systems` DISABLE KEYS */;
  2509. INSERT INTO `systems` VALUES (1,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-1','sys-1',NULL,15,0,NULL,'this is a note',107,NULL,'Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-2','sys-2',NULL,15,0,NULL,'this is a note',106,NULL,'Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-3','sys-3',NULL,15,0,NULL,'this is a note',137,NULL,'Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-4','sys-4',NULL,15,0,NULL,'this is a note',136,NULL,'Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-5','sys-5',NULL,15,0,NULL,'this is a note',135,NULL,'Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-6','sys-6',NULL,15,0,NULL,'this is a note',107,NULL,'Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-7','sys-7',NULL,15,0,NULL,'this is a note',106,NULL,'In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-8','sys-8',NULL,15,0,NULL,'this is a note',137,NULL,'Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-9','sys-9',NULL,15,0,NULL,'this is a note',136,NULL,'Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01','2015-07-15','sys-10','sys-10',NULL,15,0,NULL,'this is a note',135,NULL,'Draft','ggrc.com',16,'Draft'),(11,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-1','proc-1',NULL,15,1,NULL,'this is a note',107,NULL,'Draft','ggrc.com',16,'Draft'),(12,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-2','proc-2',NULL,15,1,NULL,'this is a note',106,NULL,'Final','ggrc.com',16,'Draft'),(13,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-3','proc-3',NULL,15,1,NULL,'this is a note',137,NULL,'Effective','ggrc.com',16,'Draft'),(14,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-4','proc-4',NULL,15,1,NULL,'this is a note',136,NULL,'Ineffective','ggrc.com',16,'Draft'),(15,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-5','proc-5',NULL,15,1,NULL,'this is a note',135,NULL,'Launched','ggrc.com',16,'Draft'),(16,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-6','proc-6',NULL,15,1,NULL,'this is a note',107,NULL,'Not Launched','ggrc.com',16,'Draft'),(17,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-7','proc-7',NULL,15,1,NULL,'this is a note',106,NULL,'In Scope','ggrc.com',16,'Draft'),(18,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-8','proc-8',NULL,15,1,NULL,'this is a note',137,NULL,'Not in Scope','ggrc.com',16,'Draft'),(19,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-9','proc-9',NULL,15,1,NULL,'this is a note',136,NULL,'Deprecated','ggrc.com',16,'Draft'),(20,1,'2016-11-10 16:49:42','2016-11-10 16:49:42','test','google.com','2015-07-01','2015-07-15','proc-10','proc-10',NULL,15,1,NULL,'this is a note',135,NULL,'Draft','ggrc.com',16,'Draft');
  2510. /*!40000 ALTER TABLE `systems` ENABLE KEYS */;
  2511. UNLOCK TABLES;
  2512.  
  2513. --
  2514. -- Table structure for table `task_group_objects`
  2515. --
  2516.  
  2517. DROP TABLE IF EXISTS `task_group_objects`;
  2518. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2519. /*!40101 SET character_set_client = utf8 */;
  2520. CREATE TABLE `task_group_objects` (
  2521. `id` int(11) NOT NULL AUTO_INCREMENT,
  2522. `task_group_id` int(11) NOT NULL,
  2523. `object_id` int(11) NOT NULL,
  2524. `object_type` varchar(250) NOT NULL,
  2525. `end_date` date DEFAULT NULL,
  2526. `start_date` date DEFAULT NULL,
  2527. `status` varchar(250) DEFAULT NULL,
  2528. `created_at` datetime NOT NULL,
  2529. `modified_by_id` int(11) DEFAULT NULL,
  2530. `updated_at` datetime NOT NULL,
  2531. `context_id` int(11) DEFAULT NULL,
  2532. PRIMARY KEY (`id`),
  2533. UNIQUE KEY `task_group_id` (`task_group_id`,`object_id`,`object_type`),
  2534. KEY `fk_task_group_objects_contexts` (`context_id`),
  2535. KEY `ix_task_group_id` (`task_group_id`),
  2536. KEY `ix_task_group_objects_updated_at` (`updated_at`),
  2537. CONSTRAINT `fk_task_group_objects_context_id` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2538. CONSTRAINT `fk_task_group_objects_task_group_id` FOREIGN KEY (`task_group_id`) REFERENCES `task_groups` (`id`) ON DELETE CASCADE
  2539. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2540. /*!40101 SET character_set_client = @saved_cs_client */;
  2541.  
  2542. --
  2543. -- Dumping data for table `task_group_objects`
  2544. --
  2545.  
  2546. LOCK TABLES `task_group_objects` WRITE;
  2547. /*!40000 ALTER TABLE `task_group_objects` DISABLE KEYS */;
  2548. /*!40000 ALTER TABLE `task_group_objects` ENABLE KEYS */;
  2549. UNLOCK TABLES;
  2550.  
  2551. --
  2552. -- Table structure for table `task_group_tasks`
  2553. --
  2554.  
  2555. DROP TABLE IF EXISTS `task_group_tasks`;
  2556. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2557. /*!40101 SET character_set_client = utf8 */;
  2558. CREATE TABLE `task_group_tasks` (
  2559. `id` int(11) NOT NULL AUTO_INCREMENT,
  2560. `task_group_id` int(11) NOT NULL,
  2561. `end_date` date DEFAULT NULL,
  2562. `start_date` date DEFAULT NULL,
  2563. `created_at` datetime NOT NULL,
  2564. `modified_by_id` int(11) DEFAULT NULL,
  2565. `updated_at` datetime NOT NULL,
  2566. `context_id` int(11) DEFAULT NULL,
  2567. `sort_index` varchar(250) NOT NULL,
  2568. `contact_id` int(11) DEFAULT NULL,
  2569. `description` text,
  2570. `title` varchar(250) NOT NULL,
  2571. `relative_end_day` int(11) DEFAULT NULL,
  2572. `relative_end_month` int(11) DEFAULT NULL,
  2573. `relative_start_day` int(11) DEFAULT NULL,
  2574. `relative_start_month` int(11) DEFAULT NULL,
  2575. `object_approval` tinyint(1) NOT NULL,
  2576. `response_options` text NOT NULL,
  2577. `task_type` varchar(250) NOT NULL,
  2578. `secondary_contact_id` int(11) DEFAULT NULL,
  2579. `slug` varchar(250) NOT NULL,
  2580. PRIMARY KEY (`id`),
  2581. UNIQUE KEY `unique_slug` (`slug`),
  2582. KEY `fk_task_group_tasks_contexts` (`context_id`),
  2583. KEY `fk_task_group_tasks_contact` (`contact_id`),
  2584. KEY `ix_task_group_tasks_updated_at` (`updated_at`),
  2585. KEY `fk_task_group_tasks_secondary_contact` (`secondary_contact_id`),
  2586. KEY `fk_task_group_tasks_task_group_id` (`task_group_id`),
  2587. CONSTRAINT `fk_task_group_tasks_context_id` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2588. CONSTRAINT `fk_task_group_tasks_task_group_id` FOREIGN KEY (`task_group_id`) REFERENCES `task_groups` (`id`) ON DELETE CASCADE
  2589. ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
  2590. /*!40101 SET character_set_client = @saved_cs_client */;
  2591.  
  2592. --
  2593. -- Dumping data for table `task_group_tasks`
  2594. --
  2595.  
  2596. LOCK TABLES `task_group_tasks` WRITE;
  2597. /*!40000 ALTER TABLE `task_group_tasks` DISABLE KEYS */;
  2598. INSERT INTO `task_group_tasks` VALUES (1,1,'2015-07-15','2015-07-01','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',24,'',15,'test','One time',NULL,NULL,NULL,NULL,0,'[]','text',NULL,'task-1'),(2,2,NULL,NULL,'2016-11-10 16:49:46',1,'2016-11-10 16:49:46',25,'',15,'test','Weekly',5,NULL,2,NULL,0,'[]','text',NULL,'task-2'),(3,3,NULL,NULL,'2016-11-10 16:49:46',1,'2016-11-10 16:49:46',26,'',15,NULL,'Monthly',22,NULL,1,NULL,0,'[\"test\"]','checkbox',NULL,'task-3'),(4,4,NULL,NULL,'2016-11-10 16:49:46',1,'2016-11-10 16:49:46',27,'',15,'test','Quarterly',15,2,5,1,0,'[]','text',NULL,'task-4'),(5,5,NULL,NULL,'2016-11-10 16:49:46',1,'2016-11-10 16:49:46',28,'',15,NULL,'Annually',15,7,7,5,0,'[\"test\"]','menu',NULL,'task-5'),(6,6,'2015-07-15','2015-07-01','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',24,'',15,NULL,'One time',NULL,NULL,NULL,NULL,0,'[\"test\"]','checkbox',NULL,'task-6'),(7,1,'2015-07-15','2015-07-01','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',24,'',15,'test','One time',NULL,NULL,NULL,NULL,0,'[]','text',NULL,'task-7'),(8,2,NULL,NULL,'2016-11-10 16:49:46',1,'2016-11-10 16:51:34',25,'',17,NULL,'Weekly',5,NULL,2,NULL,0,'[\"test\"]','menu',NULL,'task-8'),(9,3,NULL,NULL,'2016-11-10 16:49:46',1,'2016-11-10 16:49:46',26,'',15,NULL,'Monthly',22,NULL,1,NULL,0,'[\"test\"]','checkbox',NULL,'task-9'),(10,4,NULL,NULL,'2016-11-10 16:49:46',1,'2016-11-10 16:49:46',27,'',15,'test','Quarterly',15,2,5,1,0,'[]','text',NULL,'task-10'),(11,7,'2016-11-17','2016-11-10','2016-11-10 16:51:07',1,'2016-11-10 16:51:07',25,'4503599627370495.5',1,'','uoe',4,NULL,1,NULL,0,'[]','text',NULL,'TASK-11'),(12,7,'2016-11-17','2016-11-10','2016-11-10 16:51:09',1,'2016-11-10 16:51:50',25,'4503599627370495.5',20,'','uoeauaouoa',4,NULL,1,NULL,0,'[]','text',NULL,'TASK-12');
  2599. /*!40000 ALTER TABLE `task_group_tasks` ENABLE KEYS */;
  2600. UNLOCK TABLES;
  2601.  
  2602. --
  2603. -- Table structure for table `task_groups`
  2604. --
  2605.  
  2606. DROP TABLE IF EXISTS `task_groups`;
  2607. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2608. /*!40101 SET character_set_client = utf8 */;
  2609. CREATE TABLE `task_groups` (
  2610. `id` int(11) NOT NULL AUTO_INCREMENT,
  2611. `workflow_id` int(11) NOT NULL,
  2612. `contact_id` int(11) DEFAULT NULL,
  2613. `end_date` date DEFAULT NULL,
  2614. `start_date` date DEFAULT NULL,
  2615. `description` text,
  2616. `title` varchar(250) NOT NULL,
  2617. `slug` varchar(250) NOT NULL,
  2618. `created_at` datetime NOT NULL,
  2619. `modified_by_id` int(11) DEFAULT NULL,
  2620. `updated_at` datetime NOT NULL,
  2621. `context_id` int(11) DEFAULT NULL,
  2622. `lock_task_order` tinyint(1) DEFAULT NULL,
  2623. `sort_index` varchar(250) NOT NULL,
  2624. `secondary_contact_id` int(11) DEFAULT NULL,
  2625. PRIMARY KEY (`id`),
  2626. UNIQUE KEY `uq_task_groups` (`slug`),
  2627. KEY `fk_task_groups_contact` (`contact_id`),
  2628. KEY `fk_task_groups_contexts` (`context_id`),
  2629. KEY `ix_task_groups_updated_at` (`updated_at`),
  2630. KEY `fk_task_groups_secondary_contact` (`secondary_contact_id`),
  2631. KEY `fk_task_groups_workflow_id` (`workflow_id`),
  2632. CONSTRAINT `fk_task_groups_contact_id` FOREIGN KEY (`contact_id`) REFERENCES `people` (`id`),
  2633. CONSTRAINT `fk_task_groups_context_id` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2634. CONSTRAINT `fk_task_groups_workflow_id` FOREIGN KEY (`workflow_id`) REFERENCES `workflows` (`id`) ON DELETE CASCADE
  2635. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  2636. /*!40101 SET character_set_client = @saved_cs_client */;
  2637.  
  2638. --
  2639. -- Dumping data for table `task_groups`
  2640. --
  2641.  
  2642. LOCK TABLES `task_groups` WRITE;
  2643. /*!40000 ALTER TABLE `task_groups` DISABLE KEYS */;
  2644. INSERT INTO `task_groups` VALUES (1,1,15,NULL,NULL,'test','tg-1','tg-1','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',24,NULL,'',NULL),(2,2,15,NULL,NULL,'test','tg-2','tg-2','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',25,NULL,'',NULL),(3,3,15,NULL,NULL,'test','tg-3','tg-3','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',26,NULL,'',NULL),(4,4,15,NULL,NULL,'test','tg-4','tg-4','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',27,NULL,'',NULL),(5,5,15,NULL,NULL,'test','tg-5','tg-5','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',28,NULL,'',NULL),(6,1,15,NULL,NULL,'test','tg-6','tg-6','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',24,NULL,'',NULL),(7,2,15,NULL,NULL,'test','tg-7','tg-7','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',25,NULL,'',NULL),(8,3,15,NULL,NULL,'test','tg-8','tg-8','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',26,NULL,'',NULL),(9,4,15,NULL,NULL,'test','tg-9','tg-9','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',27,NULL,'',NULL),(10,5,15,NULL,NULL,'test','tg-10','tg-10','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',28,NULL,'',NULL);
  2645. /*!40000 ALTER TABLE `task_groups` ENABLE KEYS */;
  2646. UNLOCK TABLES;
  2647.  
  2648. --
  2649. -- Table structure for table `threats`
  2650. --
  2651.  
  2652. DROP TABLE IF EXISTS `threats`;
  2653. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2654. /*!40101 SET character_set_client = utf8 */;
  2655. CREATE TABLE `threats` (
  2656. `id` int(11) NOT NULL AUTO_INCREMENT,
  2657. `modified_by_id` int(11) DEFAULT NULL,
  2658. `created_at` datetime NOT NULL,
  2659. `updated_at` datetime NOT NULL,
  2660. `description` text,
  2661. `url` varchar(250) DEFAULT NULL,
  2662. `start_date` date DEFAULT NULL,
  2663. `end_date` date DEFAULT NULL,
  2664. `slug` varchar(250) NOT NULL,
  2665. `title` varchar(250) NOT NULL,
  2666. `context_id` int(11) DEFAULT NULL,
  2667. `contact_id` int(11) DEFAULT NULL,
  2668. `notes` text,
  2669. `status` varchar(250) DEFAULT NULL,
  2670. `reference_url` varchar(250) DEFAULT NULL,
  2671. `secondary_contact_id` int(11) DEFAULT NULL,
  2672. `os_state` varchar(250) NOT NULL,
  2673. PRIMARY KEY (`id`),
  2674. UNIQUE KEY `uq_t_actors` (`title`),
  2675. UNIQUE KEY `uq_threats` (`slug`),
  2676. KEY `fk_threat_actors_secondary_contact` (`secondary_contact_id`)
  2677. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2678. /*!40101 SET character_set_client = @saved_cs_client */;
  2679.  
  2680. --
  2681. -- Dumping data for table `threats`
  2682. --
  2683.  
  2684. LOCK TABLES `threats` WRITE;
  2685. /*!40000 ALTER TABLE `threats` DISABLE KEYS */;
  2686. /*!40000 ALTER TABLE `threats` ENABLE KEYS */;
  2687. UNLOCK TABLES;
  2688.  
  2689. --
  2690. -- Table structure for table `user_roles`
  2691. --
  2692.  
  2693. DROP TABLE IF EXISTS `user_roles`;
  2694. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2695. /*!40101 SET character_set_client = utf8 */;
  2696. CREATE TABLE `user_roles` (
  2697. `id` int(11) NOT NULL AUTO_INCREMENT,
  2698. `role_id` int(11) NOT NULL,
  2699. `modified_by_id` int(11) DEFAULT NULL,
  2700. `created_at` datetime NOT NULL,
  2701. `updated_at` datetime NOT NULL,
  2702. `context_id` int(11) DEFAULT NULL,
  2703. `person_id` int(11) NOT NULL,
  2704. PRIMARY KEY (`id`),
  2705. UNIQUE KEY `unique_role_context_person` (`role_id`,`context_id`,`person_id`),
  2706. KEY `fk_user_roles_contexts` (`context_id`),
  2707. KEY `ix_user_roles_person` (`person_id`),
  2708. KEY `ix_user_roles_updated_at` (`updated_at`),
  2709. CONSTRAINT `user_roles_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
  2710. ) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8;
  2711. /*!40101 SET character_set_client = @saved_cs_client */;
  2712.  
  2713. --
  2714. -- Dumping data for table `user_roles`
  2715. --
  2716.  
  2717. LOCK TABLES `user_roles` WRITE;
  2718. /*!40000 ALTER TABLE `user_roles` DISABLE KEYS */;
  2719. INSERT INTO `user_roles` VALUES (26,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,2),(27,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,3),(28,17,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,4),(29,5,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,5),(30,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,7),(31,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,8),(32,17,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,9),(33,5,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,10),(34,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,12),(35,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,13),(36,17,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,14),(37,5,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,15),(38,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,17),(39,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,18),(40,17,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,19),(41,5,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,20),(42,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,22),(43,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,23),(44,17,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,24),(45,5,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,25),(46,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,27),(47,8,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',0,28),(48,17,NULL,'2016-11-10 16:49:46','2016-11-10 16:49:46',NULL,29),(49,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',4,15),(50,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',4,4),(51,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',4,6),(52,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',5,15),(53,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',5,5),(54,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',5,6),(55,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',6,15),(56,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',6,4),(57,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',6,6),(58,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',7,15),(59,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',7,4),(60,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',7,6),(61,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',8,15),(62,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',8,4),(63,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',8,6),(64,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',9,15),(65,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',9,4),(66,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',9,6),(67,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',10,15),(68,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',10,4),(69,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',10,6),(70,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',11,15),(71,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',11,4),(72,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',11,6),(73,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',12,15),(74,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',12,4),(75,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',12,6),(76,1,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',13,15),(77,2,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',13,4),(78,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',13,6),(79,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',14,16),(80,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',4,16),(81,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',15,16),(82,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',5,16),(83,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',16,16),(84,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',6,16),(85,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',17,16),(86,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',7,16),(87,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',18,16),(88,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',8,16),(89,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',19,16),(90,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',9,16),(91,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',20,16),(92,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',10,16),(93,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',21,16),(94,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',11,16),(95,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',22,16),(96,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',12,16),(97,14,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',23,16),(98,3,NULL,'2016-11-10 16:49:47','2016-11-10 16:49:47',13,16),(99,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',24,15),(100,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',24,16),(101,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',25,15),(102,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',25,16),(103,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',26,15),(104,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',26,16),(105,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',27,15),(106,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',27,16),(107,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',28,15),(108,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',28,16),(109,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',29,15),(110,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',29,16),(111,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',30,15),(112,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',30,16),(113,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',31,15),(114,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',31,16),(115,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',32,15),(116,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',32,16),(117,18,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',33,15),(118,19,NULL,'2016-11-10 16:49:49','2016-11-10 16:49:49',33,16),(119,19,1,'2016-11-10 16:51:34','2016-11-10 16:51:34',25,17),(120,19,1,'2016-11-10 16:51:50','2016-11-10 16:51:50',25,20);
  2720. /*!40000 ALTER TABLE `user_roles` ENABLE KEYS */;
  2721. UNLOCK TABLES;
  2722.  
  2723. --
  2724. -- Table structure for table `vendors`
  2725. --
  2726.  
  2727. DROP TABLE IF EXISTS `vendors`;
  2728. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2729. /*!40101 SET character_set_client = utf8 */;
  2730. CREATE TABLE `vendors` (
  2731. `id` int(11) NOT NULL AUTO_INCREMENT,
  2732. `modified_by_id` int(11) DEFAULT NULL,
  2733. `created_at` datetime NOT NULL,
  2734. `updated_at` datetime NOT NULL,
  2735. `description` text,
  2736. `url` varchar(250) DEFAULT NULL,
  2737. `start_date` datetime DEFAULT NULL,
  2738. `end_date` datetime DEFAULT NULL,
  2739. `slug` varchar(250) NOT NULL,
  2740. `title` varchar(250) NOT NULL,
  2741. `context_id` int(11) DEFAULT NULL,
  2742. `contact_id` int(11) DEFAULT NULL,
  2743. `notes` text,
  2744. `status` varchar(250) NOT NULL,
  2745. `reference_url` varchar(250) DEFAULT NULL,
  2746. `secondary_contact_id` int(11) DEFAULT NULL,
  2747. `os_state` varchar(16) NOT NULL,
  2748. PRIMARY KEY (`id`),
  2749. UNIQUE KEY `uq_vendors_title` (`title`),
  2750. UNIQUE KEY `uq_slug_vendors` (`slug`),
  2751. KEY `fk_vendors_context` (`context_id`),
  2752. KEY `fk_vendors_contact` (`contact_id`),
  2753. KEY `fk_vendors_modified_by` (`modified_by_id`),
  2754. KEY `fk_vendors_status` (`status`),
  2755. KEY `ix_vendors_updated_at` (`updated_at`),
  2756. KEY `fk_vendors_secondary_contact` (`secondary_contact_id`)
  2757. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  2758. /*!40101 SET character_set_client = @saved_cs_client */;
  2759.  
  2760. --
  2761. -- Dumping data for table `vendors`
  2762. --
  2763.  
  2764. LOCK TABLES `vendors` WRITE;
  2765. /*!40000 ALTER TABLE `vendors` DISABLE KEYS */;
  2766. INSERT INTO `vendors` VALUES (1,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-1','ven-1',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft'),(2,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-2','ven-2',NULL,15,'this is a note','Final','ggrc.com',16,'Draft'),(3,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-3','ven-3',NULL,15,'this is a note','Effective','ggrc.com',16,'Draft'),(4,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-4','ven-4',NULL,15,'this is a note','Ineffective','ggrc.com',16,'Draft'),(5,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-5','ven-5',NULL,15,'this is a note','Launched','ggrc.com',16,'Draft'),(6,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-6','ven-6',NULL,15,'this is a note','Not Launched','ggrc.com',16,'Draft'),(7,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-7','ven-7',NULL,15,'this is a note','In Scope','ggrc.com',16,'Draft'),(8,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-8','ven-8',NULL,15,'this is a note','Not in Scope','ggrc.com',16,'Draft'),(9,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-9','ven-9',NULL,15,'this is a note','Deprecated','ggrc.com',16,'Draft'),(10,1,'2016-11-10 16:49:41','2016-11-10 16:49:41','test','google.com','2015-07-01 00:00:00','2015-07-15 00:00:00','ven-10','ven-10',NULL,15,'this is a note','Draft','ggrc.com',16,'Draft');
  2767. /*!40000 ALTER TABLE `vendors` ENABLE KEYS */;
  2768. UNLOCK TABLES;
  2769.  
  2770. --
  2771. -- Table structure for table `workflow_people`
  2772. --
  2773.  
  2774. DROP TABLE IF EXISTS `workflow_people`;
  2775. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2776. /*!40101 SET character_set_client = utf8 */;
  2777. CREATE TABLE `workflow_people` (
  2778. `id` int(11) NOT NULL AUTO_INCREMENT,
  2779. `workflow_id` int(11) NOT NULL,
  2780. `person_id` int(11) NOT NULL,
  2781. `status` varchar(250) DEFAULT NULL,
  2782. `created_at` datetime NOT NULL,
  2783. `modified_by_id` int(11) DEFAULT NULL,
  2784. `updated_at` datetime NOT NULL,
  2785. `context_id` int(11) DEFAULT NULL,
  2786. PRIMARY KEY (`id`),
  2787. UNIQUE KEY `workflow_id` (`workflow_id`,`person_id`),
  2788. KEY `fk_workflow_people_contexts` (`context_id`),
  2789. KEY `ix_person_id` (`person_id`),
  2790. KEY `ix_workflow_id` (`workflow_id`),
  2791. KEY `ix_workflow_people_updated_at` (`updated_at`),
  2792. CONSTRAINT `fk_workflow_people_context_id` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`),
  2793. CONSTRAINT `fk_workflow_people_person_id` FOREIGN KEY (`person_id`) REFERENCES `people` (`id`),
  2794. CONSTRAINT `fk_workflow_people_workflow_id` FOREIGN KEY (`workflow_id`) REFERENCES `workflows` (`id`) ON DELETE CASCADE
  2795. ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
  2796. /*!40101 SET character_set_client = @saved_cs_client */;
  2797.  
  2798. --
  2799. -- Dumping data for table `workflow_people`
  2800. --
  2801.  
  2802. LOCK TABLES `workflow_people` WRITE;
  2803. /*!40000 ALTER TABLE `workflow_people` DISABLE KEYS */;
  2804. INSERT INTO `workflow_people` VALUES (1,1,1,'Draft','2016-11-10 16:49:45',1,'2016-11-10 16:49:45',24),(2,2,1,'Draft','2016-11-10 16:49:45',1,'2016-11-10 16:49:45',25),(3,3,1,'Draft','2016-11-10 16:49:45',1,'2016-11-10 16:49:45',26),(4,4,1,'Draft','2016-11-10 16:49:45',1,'2016-11-10 16:49:45',27),(5,5,1,'Draft','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',28),(6,6,1,'Draft','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',29),(7,7,1,'Draft','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',30),(8,8,1,'Draft','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',31),(9,9,1,'Draft','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',32),(10,10,1,'Draft','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',33),(11,1,15,'Draft','2016-11-10 16:49:46',NULL,'2016-11-10 16:49:46',24),(12,2,15,'Draft','2016-11-10 16:49:46',NULL,'2016-11-10 16:49:46',25),(13,3,15,'Draft','2016-11-10 16:49:46',NULL,'2016-11-10 16:49:46',26),(14,4,15,'Draft','2016-11-10 16:49:46',NULL,'2016-11-10 16:49:46',27),(15,5,15,'Draft','2016-11-10 16:49:46',NULL,'2016-11-10 16:49:46',28),(16,2,17,'Draft','2016-11-10 16:51:34',NULL,'2016-11-10 16:51:34',25),(17,2,20,'Draft','2016-11-10 16:51:50',NULL,'2016-11-10 16:51:50',25);
  2805. /*!40000 ALTER TABLE `workflow_people` ENABLE KEYS */;
  2806. UNLOCK TABLES;
  2807.  
  2808. --
  2809. -- Table structure for table `workflows`
  2810. --
  2811.  
  2812. DROP TABLE IF EXISTS `workflows`;
  2813. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2814. /*!40101 SET character_set_client = utf8 */;
  2815. CREATE TABLE `workflows` (
  2816. `id` int(11) NOT NULL AUTO_INCREMENT,
  2817. `end_date` date DEFAULT NULL,
  2818. `start_date` date DEFAULT NULL,
  2819. `description` text,
  2820. `title` varchar(250) NOT NULL,
  2821. `slug` varchar(250) NOT NULL,
  2822. `created_at` datetime NOT NULL,
  2823. `modified_by_id` int(11) DEFAULT NULL,
  2824. `updated_at` datetime NOT NULL,
  2825. `context_id` int(11) DEFAULT NULL,
  2826. `frequency` varchar(250) DEFAULT NULL,
  2827. `notify_custom_message` text,
  2828. `notify_on_change` tinyint(1) NOT NULL,
  2829. `object_approval` tinyint(1) NOT NULL,
  2830. `next_cycle_start_date` date DEFAULT NULL,
  2831. `status` varchar(250) DEFAULT NULL,
  2832. `recurrences` tinyint(1) NOT NULL,
  2833. `non_adjusted_next_cycle_start_date` date DEFAULT NULL,
  2834. `is_old_workflow` tinyint(1) DEFAULT NULL,
  2835. `kind` varchar(250) DEFAULT NULL,
  2836. PRIMARY KEY (`id`),
  2837. UNIQUE KEY `uq_workflows` (`slug`),
  2838. KEY `fk_workflows_contexts` (`context_id`),
  2839. KEY `ix_workflows_updated_at` (`updated_at`),
  2840. CONSTRAINT `fk_workflows_context_id` FOREIGN KEY (`context_id`) REFERENCES `contexts` (`id`)
  2841. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
  2842. /*!40101 SET character_set_client = @saved_cs_client */;
  2843.  
  2844. --
  2845. -- Dumping data for table `workflows`
  2846. --
  2847.  
  2848. LOCK TABLES `workflows` WRITE;
  2849. /*!40000 ALTER TABLE `workflows` DISABLE KEYS */;
  2850. INSERT INTO `workflows` VALUES (1,NULL,NULL,'test','wf-1','wf-1','2016-11-10 16:49:45',1,'2016-11-10 16:49:45',24,'one_time','this is super custom',0,0,NULL,'Draft',0,NULL,0,NULL),(2,NULL,NULL,'test','wf-2','wf-2','2016-11-10 16:49:45',1,'2016-11-10 16:52:01',25,'weekly','this is super custom',1,0,'2016-11-21','Active',1,'2016-11-21',0,NULL),(3,NULL,NULL,'test','wf-3','wf-3','2016-11-10 16:49:45',1,'2016-11-10 16:49:45',26,'monthly','this is super custom',0,0,NULL,'Draft',0,NULL,0,NULL),(4,NULL,NULL,'test','wf-4','wf-4','2016-11-10 16:49:45',1,'2016-11-10 16:49:45',27,'quarterly','this is super custom',1,0,NULL,'Draft',0,NULL,0,NULL),(5,NULL,NULL,'test','wf-5','wf-5','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',28,'annually','this is super custom',0,0,NULL,'Draft',0,NULL,0,NULL),(6,NULL,NULL,'test','wf-6','wf-6','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',29,'monthly','this is super custom',1,0,NULL,'Draft',0,NULL,0,NULL),(7,NULL,NULL,'test','wf-7','wf-7','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',30,'monthly','this is super custom',0,0,NULL,'Draft',0,NULL,0,NULL),(8,NULL,NULL,'test','wf-8','wf-8','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',31,'monthly','this is super custom',1,0,NULL,'Draft',0,NULL,0,NULL),(9,NULL,NULL,'test','wf-9','wf-9','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',32,'monthly','not so custom',0,0,NULL,'Draft',0,NULL,0,NULL),(10,NULL,NULL,'test','wf-10','wf-10','2016-11-10 16:49:46',1,'2016-11-10 16:49:46',33,'monthly',NULL,1,0,NULL,'Draft',0,NULL,0,NULL);
  2851. /*!40000 ALTER TABLE `workflows` ENABLE KEYS */;
  2852. UNLOCK TABLES;
  2853. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  2854.  
  2855. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  2856. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  2857. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  2858. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  2859. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  2860. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  2861. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  2862.  
  2863. -- Dump completed on 2016-11-10 16:57:19
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement