You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
1016
-
INSERT INTO `permissions` VALUES (1,'superuser','There can be only one Highlander','1'),(2,'user_accounts','User management','2'),(3,'user_accounts_multisite','Across all sites create and edit users','2'),(4,'context_help','Edit help documentation','2'),(5,'bvl_feedback','Behavioural QC','1'),(6,'mri_feedback','Edit MRI feedback threads','2'),(7,'mri_efax','Edit MRI Efax files','2'),(8,'send_to_dcc','Send to DCC','2'),(9,'unsend_to_dcc','Reverse Send from DCC','2'),(10,'access_all_profiles','Across all sites access candidate profiles','2'),(11,'data_entry','Data entry','1'),(12,'certification','Certify examiners','2'),(13,'certification_multisite','Across all sites certify examiners','2'),(14,'timepoint_flag','Edit exclusion flags','2'),(15,'timepoint_flag_evaluate','Evaluate overall exclusionary criteria for the timepoint','2'),(16,'mri_safety','Review MRI safety form for accidental findings','2'),(17,'conflict_resolver','Resolving conflicts','2'),(18,'data_dict','Parameter Type description','2'),(19,'violated_scans','Violated Scans','2'),(20,'violated_scans_modifications','Editing the MRI protocol table (Violated Scans moduleiolated Scans)','2');
1016
+
INSERT INTO `permissions` VALUES (1,'superuser','There can be only one Highlander','1'),(2,'user_accounts','User management','2'),(3,'user_accounts_multisite','Across all sites create and edit users','2'),(4,'context_help','Edit help documentation','2'),(5,'bvl_feedback','Behavioural QC','1'),(6,'mri_feedback','Edit MRI feedback threads','2'),(7,'mri_efax','Edit MRI Efax files','2'),(8,'send_to_dcc','Send to DCC','2'),(9,'unsend_to_dcc','Reverse Send from DCC','2'),(10,'access_all_profiles','Across all sites access candidate profiles','2'),(11,'data_entry','Data entry','1'),(12,'certification','Certify examiners','2'),(13,'certification_multisite','Across all sites certify examiners','2'),(14,'timepoint_flag','Edit exclusion flags','2'),(15,'timepoint_flag_evaluate','Evaluate overall exclusionary criteria for the timepoint','2'),(16,'mri_safety','Review MRI safety form for accidental findings','2'),(17,'conflict_resolver','Resolving conflicts','2'),(18,'data_dict','Parameter Type description','2'),(19,'violated_scans','Violated Scans','2'),(20,'violated_scans_modifications','Editing the MRI protocol table (Violated Scans module)','2'),(21,'data_integrity_flag','Data Integrity Flag','2');
1017
1017
1018
1018
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
1019
1019
UNLOCK TABLES;
@@ -1640,9 +1640,6 @@ UNLOCK TABLES;
1640
1640
1641
1641
-- Dump completed on 2012-08-21 16:13:53
1642
1642
1643
-
--
1644
-
-- Table structure for table `parameter_type_override`
1645
-
--
1646
1643
1647
1644
-- This table needs to be MyISAM because InnoDB doesn't
INSERT INTO help (helpID, topic, content) VALUES ('1','LORIS HELP: Using the Database','Welcome to LORIS database. The help section provides you with guidelines for adding and updating information in the database'), ('2','HOW TO - Guide','Under Construction.Please visit us later'), ('3','Guidelines','Under Construction.Please visit us later'), ('5','Instruments - Guide','Under Construction.Please visit us later');
1669
1666
1667
+
1668
+
1669
+
--
1670
+
-- Table structure for table `data_integrity_flag`
1671
+
--
1672
+
1673
+
DROPTABLE IF EXISTS `data_integrity_flag`;
1674
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
1675
+
/*!40101 SET character_set_client = utf8 */;
1676
+
CREATETABLE `data_integrity_flag` (
1677
+
`dataflag_id`int(11) NOT NULL AUTO_INCREMENT,
1678
+
`dataflag_visitlabel`varchar(255) NOT NULL,
1679
+
`dataflag_instrument`varchar(255) NOT NULL,
1680
+
`dataflag_date`dateNOT NULL,
1681
+
`dataflag_status`int(11) NOT NULL,
1682
+
`dataflag_comment`text,
1683
+
`latest_entry`tinyint(1) NOT NULL DEFAULT '1',
1684
+
`dataflag_fbcreated`int(11) NOT NULL DEFAULT '0',
1685
+
`dataflag_fbclosed`int(11) NOT NULL DEFAULT '0',
1686
+
`dataflag_fbcomment`int(11) NOT NULL DEFAULT '0',
1687
+
`dataflag_fbdeleted`int(11) NOT NULL DEFAULT '0',
1688
+
`dataflag_userid`varchar(255) NOT NULL,
1689
+
PRIMARY KEY (`dataflag_id`)
1690
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1691
+
/*!40101 SET character_set_client = @saved_cs_client */;
1692
+
1693
+
--
1694
+
-- Dumping data for table `data_integrity_flag`
1695
+
--
1696
+
1697
+
LOCK TABLES `data_integrity_flag` WRITE;
1698
+
/*!40000 ALTER TABLE `data_integrity_flag` DISABLE KEYS */;
1699
+
/*!40000 ALTER TABLE `data_integrity_flag` ENABLE KEYS */;
1700
+
UNLOCK TABLES;
1701
+
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
1702
+
1703
+
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
1704
+
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
1705
+
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
1706
+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
1707
+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
1708
+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
$('#instrument,#visit_label,#users').bind('change',function(){$("#filter").trigger('click');});//The form is automatically loaded when the instrument dropdown is changed
60
+
$('#update_data').bind('change',function(){$("#filter").trigger('click');});//The form is automatically loaded when the dropdown is changed
0 commit comments