-- MySQL dump 10.11 -- -- Host: localhost Database: lams -- ------------------------------------------------------ -- Server version 5.0.75-0ubuntu10 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `lams_activity_category` -- DROP TABLE IF EXISTS `lams_activity_category`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_activity_category` ( `activity_category_id` int(3) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`activity_category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_activity_category` -- LOCK TABLES `lams_activity_category` WRITE; /*!40000 ALTER TABLE `lams_activity_category` DISABLE KEYS */; INSERT INTO `lams_activity_category` VALUES (1,'SYSTEM'),(2,'COLLABORATION'),(3,'ASSESSMENT'),(4,'CONTENT'),(5,'SPLIT'),(6,'RESPONSE'); /*!40000 ALTER TABLE `lams_activity_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_activity_evaluation` -- DROP TABLE IF EXISTS `lams_activity_evaluation`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_activity_evaluation` ( `activity_evaluation_id` bigint(20) NOT NULL auto_increment, `activity_id` bigint(20) NOT NULL, `tool_output_definition` varchar(255) NOT NULL, PRIMARY KEY (`activity_evaluation_id`), KEY `activity_id` (`activity_id`), CONSTRAINT `FK_lams_activity_evaluation_1` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_activity_evaluation` -- LOCK TABLES `lams_activity_evaluation` WRITE; /*!40000 ALTER TABLE `lams_activity_evaluation` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_activity_evaluation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_activity_learners` -- DROP TABLE IF EXISTS `lams_activity_learners`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_activity_learners` ( `user_id` bigint(20) NOT NULL default '0', `activity_id` bigint(20) NOT NULL default '0', `allowed_to_pass` tinyint(4) NOT NULL default '0', KEY `user_id` (`user_id`), KEY `activity_id` (`activity_id`), CONSTRAINT `FK_TABLE_32_1` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`), CONSTRAINT `FK_TABLE_32_2` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_activity_learners` -- LOCK TABLES `lams_activity_learners` WRITE; /*!40000 ALTER TABLE `lams_activity_learners` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_activity_learners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_auth_method_type` -- DROP TABLE IF EXISTS `lams_auth_method_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_auth_method_type` ( `authentication_method_type_id` int(3) NOT NULL, `description` varchar(64) NOT NULL, PRIMARY KEY (`authentication_method_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_auth_method_type` -- LOCK TABLES `lams_auth_method_type` WRITE; /*!40000 ALTER TABLE `lams_auth_method_type` DISABLE KEYS */; INSERT INTO `lams_auth_method_type` VALUES (1,'LAMS'),(2,'WEB_AUTH'),(3,'LDAP'); /*!40000 ALTER TABLE `lams_auth_method_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_authentication_method` -- DROP TABLE IF EXISTS `lams_authentication_method`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_authentication_method` ( `authentication_method_id` bigint(20) NOT NULL, `authentication_method_type_id` int(3) NOT NULL default '0', `authentication_method_name` varchar(255) NOT NULL, PRIMARY KEY (`authentication_method_id`), UNIQUE KEY `UQ_lams_authentication_method_1` (`authentication_method_name`), KEY `authentication_method_type_id` (`authentication_method_type_id`), CONSTRAINT `FK_lams_authorization_method_1` FOREIGN KEY (`authentication_method_type_id`) REFERENCES `lams_auth_method_type` (`authentication_method_type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_authentication_method` -- LOCK TABLES `lams_authentication_method` WRITE; /*!40000 ALTER TABLE `lams_authentication_method` DISABLE KEYS */; INSERT INTO `lams_authentication_method` VALUES (1,1,'LAMS-Database'),(2,2,'Oxford-WebAuth'),(3,3,'MQ-LDAP'); /*!40000 ALTER TABLE `lams_authentication_method` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_branch_activity_entry` -- DROP TABLE IF EXISTS `lams_branch_activity_entry`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_branch_activity_entry` ( `entry_id` bigint(20) NOT NULL auto_increment, `entry_ui_id` int(11) default NULL, `group_id` bigint(20) default NULL, `sequence_activity_id` bigint(20) default NULL, `branch_activity_id` bigint(20) NOT NULL, `condition_id` bigint(20) default NULL, `open_gate` tinyint(4) default NULL, PRIMARY KEY (`entry_id`), KEY `group_id` (`group_id`), KEY `sequence_activity_id` (`sequence_activity_id`), KEY `branch_activity_id` (`branch_activity_id`), KEY `condition_id` (`condition_id`), CONSTRAINT `FK_lams_group_activity_1` FOREIGN KEY (`group_id`) REFERENCES `lams_group` (`group_id`), CONSTRAINT `FK_lams_branch_map_sequence` FOREIGN KEY (`sequence_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`), CONSTRAINT `FK_lams_branch_map_branch` FOREIGN KEY (`branch_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`), CONSTRAINT `FK_lams_branch_activity_entry_4` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_branch_activity_entry` -- LOCK TABLES `lams_branch_activity_entry` WRITE; /*!40000 ALTER TABLE `lams_branch_activity_entry` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_branch_activity_entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_branch_condition` -- DROP TABLE IF EXISTS `lams_branch_condition`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_branch_condition` ( `condition_id` bigint(20) NOT NULL auto_increment, `condition_ui_id` int(11) default NULL, `order_id` int(11) default NULL, `name` varchar(255) NOT NULL, `display_name` varchar(255) default NULL, `type` varchar(30) NOT NULL, `start_value` varchar(255) default NULL, `end_value` varchar(255) default NULL, `exact_match_value` varchar(255) default NULL, PRIMARY KEY (`condition_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_branch_condition` -- LOCK TABLES `lams_branch_condition` WRITE; /*!40000 ALTER TABLE `lams_branch_condition` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_branch_condition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_competence` -- DROP TABLE IF EXISTS `lams_competence`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_competence` ( `competence_id` bigint(20) NOT NULL auto_increment, `learning_design_id` bigint(20) default NULL, `description` text, `title` varchar(255) default NULL, PRIMARY KEY (`competence_id`), UNIQUE KEY `competence_id` (`competence_id`), UNIQUE KEY `learning_design_id` (`learning_design_id`,`title`), CONSTRAINT `LearningDesignCompetenceMap` FOREIGN KEY (`learning_design_id`) REFERENCES `lams_learning_design` (`learning_design_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_competence` -- LOCK TABLES `lams_competence` WRITE; /*!40000 ALTER TABLE `lams_competence` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_competence` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_competence_mapping` -- DROP TABLE IF EXISTS `lams_competence_mapping`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_competence_mapping` ( `competence_mapping_id` bigint(20) NOT NULL auto_increment, `competence_id` bigint(20) default NULL, `activity_id` bigint(20) default NULL, PRIMARY KEY (`competence_mapping_id`), UNIQUE KEY `competence_mapping_id` (`competence_mapping_id`), UNIQUE KEY `competence_id` (`competence_id`,`activity_id`), KEY `activity_id` (`activity_id`), CONSTRAINT `FK_lams_competence_mapping_1` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_lams_competence_mapping_2` FOREIGN KEY (`competence_id`) REFERENCES `lams_competence` (`competence_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_competence_mapping` -- LOCK TABLES `lams_competence_mapping` WRITE; /*!40000 ALTER TABLE `lams_competence_mapping` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_competence_mapping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_configuration` -- DROP TABLE IF EXISTS `lams_configuration`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_configuration` ( `config_key` varchar(30) NOT NULL, `config_value` varchar(255) default NULL, `description_key` varchar(255) default NULL, `header_name` varchar(50) default NULL, `format` varchar(30) default NULL, `required` tinyint(4) NOT NULL default '0', PRIMARY KEY (`config_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_configuration` -- LOCK TABLES `lams_configuration` WRITE; /*!40000 ALTER TABLE `lams_configuration` DISABLE KEYS */; INSERT INTO `lams_configuration` VALUES ('AdminScreenSize','1024x768','config.admin.screen.size','config.header.look.feel','STRING',1),('AllowDirectLessonLaunch','false','config.allow.direct.lesson.launch','config.header.features','BOOLEAN',1),('AllowLiveEdit','true','config.allow.live.edit','config.header.features','BOOLEAN',1),('AuthoringActivitiesColour','true','config.authoring.activities.colour','config.header.look.feel','BOOLEAN',1),('AuthoringClientVersion','2.3.0.200905211732','config.authoring.client.version','config.header.versions','STRING',1),('AuthoringScreenSize','1024x768','config.authoring.screen.size','config.header.look.feel','STRING',1),('CleanupPreviewOlderThanDays','7','config.cleanup.preview.older.than.days','config.header.system','LONG',1),('ContentRepositoryPath','/var/opt/lams/repository','config.content.repository.path','config.header.uploads','STRING',1),('CustomTabLink','','config.custom.tab.link','config.header.look.feel','STRING',0),('CustomTabTitle','','config.custom.tab.title','config.header.look.feel','STRING',0),('DefaultFlashTheme','default','config.default.flash.theme','config.header.look.feel','STRING',1),('DefaultHTMLTheme','defaultHTML','config.default.html.theme','config.header.look.feel','STRING',1),('DictionaryDateCreated','2008-12-05','config.dictionary.date.created','config.header.versions','STRING',1),('DumpDir','/var/opt/lams/dump','config.dump.dir','config.header.system','STRING',1),('EARDir','/usr/local/jboss-4.0.2/server/default/deploy/lams.ear/','config.ear.dir','config.header.system','STRING',1),('EnableFlash','true','config.flash.enable','config.header.features','BOOLEAN',1),('ExecutableExtensions','.bat,.bin,.com,.cmd,.exe,.msi,.msp,.ocx,.pif,.scr,.sct,.sh,.shs,.vbs','config.executable.extensions','config.header.uploads','STRING',1),('HelpURL','http://wiki.lamsfoundation.org/display/lamsdocs/','config.help.url','config.header.system','STRING',1),('LamsSupportEmail','','config.lams.support.email','config.header.email','STRING',0),('LAMS_Community_enable','false','config.community.enable','config.header.features','BOOLEAN',1),('LDAPAddr1Attr','postalAddress','admin.user.address_line_1','config.header.ldap.attributes','STRING',0),('LDAPAddr2Attr','','admin.user.address_line_2','config.header.ldap.attributes','STRING',0),('LDAPAddr3Attr','','admin.user.address_line_3','config.header.ldap.attributes','STRING',0),('LDAPAuthorMap','Teacher;SeniorStaff;Principal','config.ldap.author.map','config.header.ldap.attributes','STRING',0),('LDAPBaseDN','ou=Users,dc=melcoe,dc=mq,dc=edu,dc=au','config.ldap.base.dn','config.header.ldap','STRING',0),('LDAPBindUserDN','','config.ldap.bind.user.dn','config.header.ldap','STRING',0),('LDAPBindUserPassword','','config.ldap.bind.user.password','config.header.ldap','STRING',0),('LDAPCityAttr','l','admin.user.city','config.header.ldap.attributes','STRING',0),('LDAPCountryAttr','','admin.user.country','config.header.ldap.attributes','STRING',0),('LDAPDayPhoneAttr','telephoneNumber','admin.user.day_phone','config.header.ldap.attributes','STRING',0),('LDAPDisabledAttr','!accountStatus','sysadmin.disabled','config.header.ldap.attributes','STRING',0),('LDAPEmailAttr','mail','admin.user.email','config.header.ldap.attributes','STRING',0),('LDAPEncryptPasswordFromBrowser','true','config.ldap.encrypt.password.from.browser','config.header.ldap','BOOLEAN',1),('LDAPEveningPhoneAttr','homePhone','admin.user.evening_phone','config.header.ldap.attributes','STRING',0),('LDAPFaxAttr','facsimileTelephoneNumber','admin.user.fax','config.header.ldap.attributes','STRING',0),('LDAPFNameAttr','givenName','admin.user.first_name','config.header.ldap.attributes','STRING',0),('LDAPGroupAdminMap','Teacher;SeniorStaff','config.ldap.group.admin.map','config.header.ldap.attributes','STRING',0),('LDAPGroupManagerMap','Principal','config.ldap.group.manager.map','config.header.ldap.attributes','STRING',0),('LDAPLearnerMap','Student;SchoolSupportStaff;Teacher;SeniorStaff;Principal','config.ldap.learner.map','config.header.ldap.attributes','STRING',0),('LDAPLNameAttr','sn','admin.user.last_name','config.header.ldap.attributes','STRING',0),('LDAPLocaleAttr','preferredLanguage','admin.organisation.locale','config.header.ldap.attributes','STRING',0),('LDAPLoginAttr','uid','admin.user.login','config.header.ldap.attributes','STRING',0),('LDAPMobileAttr','mobile','admin.user.mobile_phone','config.header.ldap.attributes','STRING',0),('LDAPMonitorMap','SchoolSupportStaff;Teacher;SeniorStaff;Principal','config.ldap.monitor.map','config.header.ldap.attributes','STRING',0),('LDAPOnlyOneOrg','true','config.ldap.only.one.org','config.header.ldap','BOOLEAN',1),('LDAPOrgAttr','schoolCode','admin.course','config.header.ldap.attributes','STRING',0),('LDAPOrgField','code','config.ldap.org.field','config.header.ldap.attributes','STRING',0),('LDAPPostcodeAttr','postalCode','admin.user.postcode','config.header.ldap.attributes','STRING',0),('LDAPProviderURL','ldap://192.168.111.15','config.ldap.provider.url','config.header.ldap','STRING',0),('LDAPProvisioningEnabled','false','config.ldap.provisioning.enabled','config.header.ldap','BOOLEAN',1),('LDAPRolesAttr','memberOf','admin.user.roles','config.header.ldap.attributes','STRING',0),('LDAPSearchFilter','(cn={0})','config.ldap.search.filter','config.header.ldap','STRING',0),('LDAPSearchResultsPageSize','100','config.ldap.search.results.page.size','config.header.ldap','LONG',0),('LDAPSecurityAuthentication','simple','config.ldap.security.authentication','config.header.ldap','STRING',0),('LDAPSecurityProtocol','','config.ldap.security.protocol','config.header.ldap','STRING',0),('LDAPStateAttr','st','admin.user.state','config.header.ldap.attributes','STRING',0),('LDAPUpdateOnLogin','true','config.ldap.update.on.login','config.header.ldap','BOOLEAN',1),('LearnerClientVersion','2.3.0.200905211732','config.learner.client.version','config.header.versions','STRING',1),('LearnerProgressBatchSize','10','config.learner.progress.batch.size','config.header.look.feel','LONG',1),('LearnerScreenSize','1024x768','config.learner.screen.size','config.header.look.feel','STRING',1),('MonitorClientVersion','2.3.0.200905211732','config.monitor.client.version','config.header.versions','STRING',1),('MonitorScreenSize','1024x768','config.monitor.screen.size','config.header.look.feel','STRING',1),('Red5RecordingsUrl','','config.red5.recordings.url','config.header.red5','STRING',0),('Red5ServerUrl','','config.red5.server.url','config.header.red5','STRING',0),('ServerLanguage','en_AU','config.server.language','config.header.look.feel','STRING',1),('ServerPageDirection','LTR','config.server.page.direction','config.header.look.feel','STRING',1),('ServerURL','http://localhost:8080/lams/','config.server.url','config.header.system','STRING',1),('ServerURLContextPath','lams/','config.server.url.context.path','config.header.system','STRING',1),('ServerVersionNumber','2.3.0.200905211732','config.server.version.number','config.header.versions','STRING',1),('SMTPPassword','','config.smtp.password','config.header.email','STRING',0),('SMTPServer','','config.smtp.server','config.header.email','STRING',0),('SMTPUser','','config.smtp.user','config.header.email','STRING',0),('TempDir','/var/opt/lams/temp','config.temp.dir','config.header.system','STRING',1),('TruststorePassword','','config.ldap.truststore.password','config.header.system','STRING',0),('TruststorePath','','config.ldap.truststore.path','config.header.system','STRING',0),('UploadFileMaxMemorySize','4096','config.upload.file.max.memory.size','config.header.uploads','LONG',1),('UploadFileMaxSize','1048576','config.upload.file.max.size','config.header.uploads','LONG',1),('UploadLargeFileMaxSize','10485760','config.upload.large.file.max.size','config.header.uploads','LONG',1),('UseCacheDebugListener','false','config.use.cache.debug.listener','config.header.system','BOOLEAN',1),('UserInactiveTimeout','86400','config.user.inactive.timeout','config.header.system','LONG',1),('Version','2.3','config.version','config.header.system','STRING',1),('XmppAdmin','admin','config.xmpp.admin','config.header.chat','STRING',0),('XmppConference','conference.shaun.melcoe.mq.edu.au','config.xmpp.conference','config.header.chat','STRING',0),('XmppDomain','shaun.melcoe.mq.edu.au','config.xmpp.domain','config.header.chat','STRING',0),('XmppPassword','wildfire','config.xmpp.password','config.header.chat','STRING',0); /*!40000 ALTER TABLE `lams_configuration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_copy_type` -- DROP TABLE IF EXISTS `lams_copy_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_copy_type` ( `copy_type_id` tinyint(4) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`copy_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_copy_type` -- LOCK TABLES `lams_copy_type` WRITE; /*!40000 ALTER TABLE `lams_copy_type` DISABLE KEYS */; INSERT INTO `lams_copy_type` VALUES (1,'NONE'),(2,'LESSON'),(3,'PREVIEW'); /*!40000 ALTER TABLE `lams_copy_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_cr_credential` -- DROP TABLE IF EXISTS `lams_cr_credential`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_cr_credential` ( `credential_id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, PRIMARY KEY (`credential_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Records the identification properties for a tool.'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_cr_credential` -- LOCK TABLES `lams_cr_credential` WRITE; /*!40000 ALTER TABLE `lams_cr_credential` DISABLE KEYS */; INSERT INTO `lams_cr_credential` VALUES (1,'sharedimageGallery','lams-sharedresources'),(2,'sharedresources','lams-sharedresources'); /*!40000 ALTER TABLE `lams_cr_credential` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_cr_node` -- DROP TABLE IF EXISTS `lams_cr_node`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_cr_node` ( `node_id` bigint(20) unsigned NOT NULL auto_increment, `workspace_id` bigint(20) unsigned NOT NULL, `path` varchar(255) default NULL, `type` varchar(255) NOT NULL, `created_date_time` datetime NOT NULL, `next_version_id` bigint(20) unsigned NOT NULL default '1', `parent_nv_id` bigint(20) unsigned default NULL, PRIMARY KEY (`node_id`), KEY `workspace_id` (`workspace_id`), CONSTRAINT `FK_lams_cr_node_1` FOREIGN KEY (`workspace_id`) REFERENCES `lams_cr_workspace` (`workspace_id`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8 COMMENT='The main table containing the node definition'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_cr_node` -- LOCK TABLES `lams_cr_node` WRITE; /*!40000 ALTER TABLE `lams_cr_node` DISABLE KEYS */; INSERT INTO `lams_cr_node` VALUES (1,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(2,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(3,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(4,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(5,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(6,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(7,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(8,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(9,1,NULL,'FILENODE','2009-05-21 17:38:03',2,NULL),(10,2,NULL,'PACKAGENODE','2009-05-21 17:38:09',2,NULL),(11,2,'index.htm','FILENODE','2009-05-21 17:38:09',2,10),(12,2,'blueline.gif','FILENODE','2009-05-21 17:38:09',2,10),(13,2,'c5_noticeboard.swf','FILENODE','2009-05-21 17:38:09',2,10),(14,2,NULL,'PACKAGENODE','2009-05-21 17:38:09',2,NULL),(15,2,'index.htm','FILENODE','2009-05-21 17:38:09',2,14),(16,2,'blueline.gif','FILENODE','2009-05-21 17:38:09',2,14),(17,2,'c8_shareResources.swf','FILENODE','2009-05-21 17:38:09',2,14),(18,2,NULL,'PACKAGENODE','2009-05-21 17:38:15',2,NULL),(19,2,'index.htm','FILENODE','2009-05-21 17:38:15',2,18),(20,2,'blueline.gif','FILENODE','2009-05-21 17:38:15',2,18),(21,2,'introToMonitor.swf','FILENODE','2009-05-21 17:38:15',2,18),(22,2,NULL,'PACKAGENODE','2009-05-21 17:38:15',2,NULL),(23,2,'index.htm','FILENODE','2009-05-21 17:38:15',2,22),(24,2,'blueline.gif','FILENODE','2009-05-21 17:38:15',2,22),(25,2,'introToAuthoring.swf','FILENODE','2009-05-21 17:38:15',2,22),(26,2,NULL,'PACKAGENODE','2009-05-21 17:38:15',2,NULL),(27,2,'index.htm','FILENODE','2009-05-21 17:38:15',2,26),(28,2,'blueline.gif','FILENODE','2009-05-21 17:38:15',2,26),(29,2,'learnerExperience.swf','FILENODE','2009-05-21 17:38:15',2,26),(30,2,NULL,'PACKAGENODE','2009-05-21 17:38:15',2,NULL),(31,2,'index.htm','FILENODE','2009-05-21 17:38:15',2,30),(32,2,'blueline.gif','FILENODE','2009-05-21 17:38:15',2,30),(33,2,'noflash.swf','FILENODE','2009-05-21 17:38:15',2,30),(34,2,NULL,'PACKAGENODE','2009-05-21 17:38:20',2,NULL),(35,2,'index.htm','FILENODE','2009-05-21 17:38:20',2,34),(36,2,'blueline.gif','FILENODE','2009-05-21 17:38:20',2,34),(37,2,'effective_authoring.swf','FILENODE','2009-05-21 17:38:20',2,34),(38,2,NULL,'PACKAGENODE','2009-05-21 17:38:20',2,NULL),(39,2,'index.htm','FILENODE','2009-05-21 17:38:20',2,38),(40,2,'blueline.gif','FILENODE','2009-05-21 17:38:20',2,38),(41,2,'whatislams.swf','FILENODE','2009-05-21 17:38:20',2,38); /*!40000 ALTER TABLE `lams_cr_node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_cr_node_version` -- DROP TABLE IF EXISTS `lams_cr_node_version`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_cr_node_version` ( `nv_id` bigint(20) unsigned NOT NULL auto_increment, `node_id` bigint(20) unsigned NOT NULL, `version_id` bigint(20) unsigned NOT NULL, `created_date_time` datetime NOT NULL, `user_id` bigint(20) NOT NULL, PRIMARY KEY (`nv_id`), KEY `node_id` (`node_id`), CONSTRAINT `FK_lams_cr_node_version_2` FOREIGN KEY (`node_id`) REFERENCES `lams_cr_node` (`node_id`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8 COMMENT='Represents a version of a node'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_cr_node_version` -- LOCK TABLES `lams_cr_node_version` WRITE; /*!40000 ALTER TABLE `lams_cr_node_version` DISABLE KEYS */; INSERT INTO `lams_cr_node_version` VALUES (1,1,1,'2009-05-21 17:38:03',5),(2,2,1,'2009-05-21 17:38:03',5),(3,3,1,'2009-05-21 17:38:03',5),(4,4,1,'2009-05-21 17:38:03',5),(5,5,1,'2009-05-21 17:38:03',5),(6,6,1,'2009-05-21 17:38:03',5),(7,7,1,'2009-05-21 17:38:03',5),(8,8,1,'2009-05-21 17:38:03',5),(9,9,1,'2009-05-21 17:38:03',5),(10,10,1,'2009-05-21 17:38:09',5),(11,11,1,'2009-05-21 17:38:09',5),(12,12,1,'2009-05-21 17:38:09',5),(13,13,1,'2009-05-21 17:38:09',5),(14,14,1,'2009-05-21 17:38:09',5),(15,15,1,'2009-05-21 17:38:09',5),(16,16,1,'2009-05-21 17:38:09',5),(17,17,1,'2009-05-21 17:38:09',5),(18,18,1,'2009-05-21 17:38:15',5),(19,19,1,'2009-05-21 17:38:15',5),(20,20,1,'2009-05-21 17:38:15',5),(21,21,1,'2009-05-21 17:38:15',5),(22,22,1,'2009-05-21 17:38:15',5),(23,23,1,'2009-05-21 17:38:15',5),(24,24,1,'2009-05-21 17:38:15',5),(25,25,1,'2009-05-21 17:38:15',5),(26,26,1,'2009-05-21 17:38:15',5),(27,27,1,'2009-05-21 17:38:15',5),(28,28,1,'2009-05-21 17:38:15',5),(29,29,1,'2009-05-21 17:38:15',5),(30,30,1,'2009-05-21 17:38:15',5),(31,31,1,'2009-05-21 17:38:15',5),(32,32,1,'2009-05-21 17:38:15',5),(33,33,1,'2009-05-21 17:38:15',5),(34,34,1,'2009-05-21 17:38:20',5),(35,35,1,'2009-05-21 17:38:20',5),(36,36,1,'2009-05-21 17:38:20',5),(37,37,1,'2009-05-21 17:38:20',5),(38,38,1,'2009-05-21 17:38:20',5),(39,39,1,'2009-05-21 17:38:20',5),(40,40,1,'2009-05-21 17:38:20',5),(41,41,1,'2009-05-21 17:38:20',5); /*!40000 ALTER TABLE `lams_cr_node_version` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_cr_node_version_property` -- DROP TABLE IF EXISTS `lams_cr_node_version_property`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_cr_node_version_property` ( `id` bigint(20) unsigned NOT NULL auto_increment, `nv_id` bigint(20) unsigned NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `type` tinyint(4) NOT NULL, PRIMARY KEY (`id`), KEY `nv_id` (`nv_id`), CONSTRAINT `FK_lams_cr_node_version_property_1` FOREIGN KEY (`nv_id`) REFERENCES `lams_cr_node_version` (`nv_id`) ) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_cr_node_version_property` -- LOCK TABLES `lams_cr_node_version_property` WRITE; /*!40000 ALTER TABLE `lams_cr_node_version_property` DISABLE KEYS */; INSERT INTO `lams_cr_node_version_property` VALUES (1,1,'FILENAME','tangled.jpg',1),(2,2,'FILENAME','medium_tangled.jpg',1),(3,3,'FILENAME','thumbnail_tangled.jpg',1),(4,4,'FILENAME','tech then and now.jpg',1),(5,5,'FILENAME','medium_tech then and now.jpg',1),(6,6,'FILENAME','thumbnail_tech then and now.jpg',1),(7,7,'FILENAME','screen_technology.jpg',1),(8,8,'FILENAME','medium_screen_technology.jpg',1),(9,9,'FILENAME','thumbnail_screen_technology.jpg',1),(10,1,'TYPE','ONLINE',1),(11,2,'TYPE','ONLINE',1),(12,3,'TYPE','ONLINE',1),(13,4,'TYPE','ONLINE',1),(14,5,'TYPE','ONLINE',1),(15,6,'TYPE','ONLINE',1),(16,7,'TYPE','ONLINE',1),(17,8,'TYPE','ONLINE',1),(18,9,'TYPE','ONLINE',1),(19,10,'INITIALPATH','index.htm',1),(20,11,'FILENAME','index.htm',1),(21,12,'FILENAME','blueline.gif',1),(22,13,'FILENAME','c5_noticeboard.swf',1),(23,14,'INITIALPATH','index.htm',1),(24,15,'FILENAME','index.htm',1),(25,16,'FILENAME','blueline.gif',1),(26,17,'FILENAME','c8_shareResources.swf',1),(27,18,'INITIALPATH','index.htm',1),(28,19,'FILENAME','index.htm',1),(29,20,'FILENAME','blueline.gif',1),(30,21,'FILENAME','introToMonitor.swf',1),(31,22,'INITIALPATH','index.htm',1),(32,23,'FILENAME','index.htm',1),(33,24,'FILENAME','blueline.gif',1),(34,25,'FILENAME','introToAuthoring.swf',1),(35,26,'INITIALPATH','index.htm',1),(36,27,'FILENAME','index.htm',1),(37,28,'FILENAME','blueline.gif',1),(38,29,'FILENAME','learnerExperience.swf',1),(39,30,'INITIALPATH','index.htm',1),(40,31,'FILENAME','index.htm',1),(41,32,'FILENAME','blueline.gif',1),(42,33,'FILENAME','noflash.swf',1),(43,34,'INITIALPATH','index.htm',1),(44,35,'FILENAME','index.htm',1),(45,36,'FILENAME','blueline.gif',1),(46,37,'FILENAME','effective_authoring.swf',1),(47,38,'INITIALPATH','index.htm',1),(48,39,'FILENAME','index.htm',1),(49,40,'FILENAME','blueline.gif',1),(50,41,'FILENAME','whatislams.swf',1); /*!40000 ALTER TABLE `lams_cr_node_version_property` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_cr_workspace` -- DROP TABLE IF EXISTS `lams_cr_workspace`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_cr_workspace` ( `workspace_id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(255) NOT NULL, PRIMARY KEY (`workspace_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Content repository workspace'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_cr_workspace` -- LOCK TABLES `lams_cr_workspace` WRITE; /*!40000 ALTER TABLE `lams_cr_workspace` DISABLE KEYS */; INSERT INTO `lams_cr_workspace` VALUES (1,'sharedimageGalleryworkspace'),(2,'sharedresourcesworkspace'); /*!40000 ALTER TABLE `lams_cr_workspace` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_cr_workspace_credential` -- DROP TABLE IF EXISTS `lams_cr_workspace_credential`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_cr_workspace_credential` ( `wc_id` bigint(20) unsigned NOT NULL auto_increment, `workspace_id` bigint(20) unsigned NOT NULL, `credential_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`wc_id`), KEY `workspace_id` (`workspace_id`), KEY `credential_id` (`credential_id`), CONSTRAINT `FK_lams_cr_workspace_credential_1` FOREIGN KEY (`workspace_id`) REFERENCES `lams_cr_workspace` (`workspace_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_cr_workspace_credential_2` FOREIGN KEY (`credential_id`) REFERENCES `lams_cr_credential` (`credential_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Maps tools access to workspaces'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_cr_workspace_credential` -- LOCK TABLES `lams_cr_workspace_credential` WRITE; /*!40000 ALTER TABLE `lams_cr_workspace_credential` DISABLE KEYS */; INSERT INTO `lams_cr_workspace_credential` VALUES (1,1,1),(2,2,2); /*!40000 ALTER TABLE `lams_cr_workspace_credential` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_css_property` -- DROP TABLE IF EXISTS `lams_css_property`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_css_property` ( `property_id` bigint(20) NOT NULL auto_increment, `style_id` bigint(20) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(100) NOT NULL, `style_subset` varchar(20) default NULL, `type` tinyint(4) NOT NULL, PRIMARY KEY (`property_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_css_property` -- LOCK TABLES `lams_css_property` WRITE; /*!40000 ALTER TABLE `lams_css_property` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_css_property` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_css_style` -- DROP TABLE IF EXISTS `lams_css_style`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_css_style` ( `style_id` bigint(20) NOT NULL auto_increment, `theme_ve_id` bigint(20) NOT NULL, PRIMARY KEY (`style_id`), KEY `theme_ve_id` (`theme_ve_id`), CONSTRAINT `FK_lams_css_style_1` FOREIGN KEY (`theme_ve_id`) REFERENCES `lams_css_theme_ve` (`theme_ve_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Groups lams_css_property into a CSSStyleDeclaration.'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_css_style` -- LOCK TABLES `lams_css_style` WRITE; /*!40000 ALTER TABLE `lams_css_style` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_css_style` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_css_theme_ve` -- DROP TABLE IF EXISTS `lams_css_theme_ve`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_css_theme_ve` ( `theme_ve_id` bigint(20) NOT NULL auto_increment, `name` varchar(100) NOT NULL, `description` varchar(100) default NULL, `parent_id` bigint(20) default NULL, `theme_flag` tinyint(1) NOT NULL default '0', `image_directory` varchar(100) default NULL, PRIMARY KEY (`theme_ve_id`), KEY `parent_id` (`parent_id`), CONSTRAINT `FK_lams_css_theme_ve_2` FOREIGN KEY (`parent_id`) REFERENCES `lams_css_theme_ve` (`theme_ve_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Stores both the Flash theme and visual element'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_css_theme_ve` -- LOCK TABLES `lams_css_theme_ve` WRITE; /*!40000 ALTER TABLE `lams_css_theme_ve` DISABLE KEYS */; INSERT INTO `lams_css_theme_ve` VALUES (1,'default','Default Flash style',NULL,1,NULL),(2,'defaultHTML','Default HTML style',NULL,1,'css'),(3,'rams','RAMS Default Flash style',NULL,1,NULL),(4,'ramsthemeHTML','RAMS Default HTML sty;e',NULL,1,'ramsthemecss'); /*!40000 ALTER TABLE `lams_css_theme_ve` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_event_subscriptions` -- DROP TABLE IF EXISTS `lams_event_subscriptions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_event_subscriptions` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `event_uid` bigint(20) default NULL, `delivery_method_id` tinyint(3) unsigned default NULL, `periodicity` bigint(20) default NULL, `last_operation_time` datetime default NULL, `last_operation_message` text, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `EventSubscriptionsToUsers` (`user_id`), KEY `event_uid` (`event_uid`), CONSTRAINT `EventSubscriptionsToUsers` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `EventSubscriptionsToEvent` FOREIGN KEY (`event_uid`) REFERENCES `lams_events` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_event_subscriptions` -- LOCK TABLES `lams_event_subscriptions` WRITE; /*!40000 ALTER TABLE `lams_event_subscriptions` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_event_subscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_events` -- DROP TABLE IF EXISTS `lams_events`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_events` ( `uid` bigint(20) NOT NULL auto_increment, `scope` varchar(128) NOT NULL, `name` varchar(128) NOT NULL, `event_session_id` bigint(20) default NULL, `triggered` tinyint(4) default NULL, `default_subject` varchar(255) default NULL, `default_message` text, `subject` varchar(255) default NULL, `message` text, `fail_time` datetime default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `scope` (`scope`,`name`,`event_session_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_events` -- LOCK TABLES `lams_events` WRITE; /*!40000 ALTER TABLE `lams_events` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_ext_course_class_map` -- DROP TABLE IF EXISTS `lams_ext_course_class_map`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_ext_course_class_map` ( `sid` int(11) NOT NULL auto_increment, `courseid` varchar(255) NOT NULL, `classid` bigint(20) NOT NULL, `ext_server_org_map_id` int(11) NOT NULL, PRIMARY KEY (`sid`), KEY `classid` (`classid`), KEY `ext_server_org_map_id` (`ext_server_org_map_id`), CONSTRAINT `lams_ext_course_class_map_fk1` FOREIGN KEY (`ext_server_org_map_id`) REFERENCES `lams_ext_server_org_map` (`sid`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `lams_ext_course_class_map_fk` FOREIGN KEY (`classid`) REFERENCES `lams_organisation` (`organisation_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_ext_course_class_map` -- LOCK TABLES `lams_ext_course_class_map` WRITE; /*!40000 ALTER TABLE `lams_ext_course_class_map` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_ext_course_class_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_ext_server_org_map` -- DROP TABLE IF EXISTS `lams_ext_server_org_map`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_ext_server_org_map` ( `sid` int(11) NOT NULL auto_increment, `serverid` varchar(255) NOT NULL, `serverkey` text NOT NULL, `servername` varchar(255) NOT NULL, `serverdesc` text, `prefix` varchar(11) NOT NULL, `userinfo_url` text NOT NULL, `timeout_url` text NOT NULL, `disabled` bit(1) NOT NULL, `orgid` bigint(20) default NULL, PRIMARY KEY (`sid`), UNIQUE KEY `serverid` (`serverid`), UNIQUE KEY `prefix` (`prefix`), KEY `orgid` (`orgid`), CONSTRAINT `lams_ext_server_org_map_fk` FOREIGN KEY (`orgid`) REFERENCES `lams_organisation` (`organisation_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_ext_server_org_map` -- LOCK TABLES `lams_ext_server_org_map` WRITE; /*!40000 ALTER TABLE `lams_ext_server_org_map` DISABLE KEYS */; INSERT INTO `lams_ext_server_org_map` VALUES (1,'moodle','moodle','moodle','moodle','mdl','http://localhost/moodle/mod/lamstwo/userinfo.php?ts=%timestamp%&un=%username%&hs=%hash%','http://dummy',0x00,7); /*!40000 ALTER TABLE `lams_ext_server_org_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_ext_user_userid_map` -- DROP TABLE IF EXISTS `lams_ext_user_userid_map`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_ext_user_userid_map` ( `sid` int(11) NOT NULL auto_increment, `external_username` varchar(250) NOT NULL, `user_id` bigint(20) NOT NULL, `ext_server_org_map_id` int(11) NOT NULL, PRIMARY KEY (`sid`), KEY `user_id` (`user_id`), KEY `ext_server_org_map_id` (`ext_server_org_map_id`), CONSTRAINT `lams_ext_user_userid_map_fk1` FOREIGN KEY (`ext_server_org_map_id`) REFERENCES `lams_ext_server_org_map` (`sid`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `lams_ext_user_userid_map_fk` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_ext_user_userid_map` -- LOCK TABLES `lams_ext_user_userid_map` WRITE; /*!40000 ALTER TABLE `lams_ext_user_userid_map` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_ext_user_userid_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_gate_activity_level` -- DROP TABLE IF EXISTS `lams_gate_activity_level`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_gate_activity_level` ( `gate_activity_level_id` int(11) NOT NULL default '0', `description` varchar(128) NOT NULL, PRIMARY KEY (`gate_activity_level_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_gate_activity_level` -- LOCK TABLES `lams_gate_activity_level` WRITE; /*!40000 ALTER TABLE `lams_gate_activity_level` DISABLE KEYS */; INSERT INTO `lams_gate_activity_level` VALUES (1,'LEARNER'),(2,'GROUP'),(3,'CLASS'); /*!40000 ALTER TABLE `lams_gate_activity_level` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_gradebook_user_activity` -- DROP TABLE IF EXISTS `lams_gradebook_user_activity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_gradebook_user_activity` ( `uid` bigint(20) NOT NULL auto_increment, `activity_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `mark` double default NULL, `feedback` text, `marked_in_gradebook` tinyint(1) NOT NULL default '0', PRIMARY KEY (`uid`), KEY `activity_id` (`activity_id`,`user_id`), KEY `FK_lams_gradebook_user_activity_2` (`user_id`), CONSTRAINT `FK_lams_gradebook_user_activity_1` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_lams_gradebook_user_activity_2` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_gradebook_user_activity` -- LOCK TABLES `lams_gradebook_user_activity` WRITE; /*!40000 ALTER TABLE `lams_gradebook_user_activity` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_gradebook_user_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_gradebook_user_lesson` -- DROP TABLE IF EXISTS `lams_gradebook_user_lesson`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_gradebook_user_lesson` ( `uid` bigint(20) NOT NULL auto_increment, `lesson_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `mark` double default NULL, `feedback` text, PRIMARY KEY (`uid`), KEY `lesson_id` (`lesson_id`,`user_id`), KEY `FK_lams_gradebook_user_lesson_2` (`user_id`), CONSTRAINT `FK_lams_gradebook_user_lesson_1` FOREIGN KEY (`lesson_id`) REFERENCES `lams_lesson` (`lesson_id`), CONSTRAINT `FK_lams_gradebook_user_lesson_2` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_gradebook_user_lesson` -- LOCK TABLES `lams_gradebook_user_lesson` WRITE; /*!40000 ALTER TABLE `lams_gradebook_user_lesson` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_gradebook_user_lesson` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_group` -- DROP TABLE IF EXISTS `lams_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_group` ( `group_id` bigint(20) NOT NULL auto_increment, `group_name` varchar(255) NOT NULL, `grouping_id` bigint(20) NOT NULL, `order_id` int(6) NOT NULL default '1', `group_ui_id` int(11) default NULL, PRIMARY KEY (`group_id`), KEY `grouping_id` (`grouping_id`), CONSTRAINT `FK_lams_learning_group_1` FOREIGN KEY (`grouping_id`) REFERENCES `lams_grouping` (`grouping_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_group` -- LOCK TABLES `lams_group` WRITE; /*!40000 ALTER TABLE `lams_group` DISABLE KEYS */; INSERT INTO `lams_group` VALUES (1,'Everybody learners',1,1,NULL),(2,'Everybody monitors',1,1,NULL),(3,'Everybody learners',2,1,NULL),(4,'Everybody monitors',2,1,NULL),(5,'Everybody learners',3,1,NULL),(6,'Everybody monitors',3,1,NULL),(7,'Everybody learners',4,1,NULL),(8,'Everybody monitors',4,1,NULL); /*!40000 ALTER TABLE `lams_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_grouping` -- DROP TABLE IF EXISTS `lams_grouping`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_grouping` ( `grouping_id` bigint(20) NOT NULL auto_increment, `grouping_ui_id` int(11) default NULL, `grouping_type_id` int(11) NOT NULL, `number_of_groups` int(11) default NULL, `learners_per_group` int(11) default NULL, `staff_group_id` bigint(20) default '0', `max_number_of_groups` int(3) default NULL, `equal_number_of_learners_per_group` tinyint(4) default '0', `view_students_before_selection` tinyint(4) default '0', PRIMARY KEY (`grouping_id`), KEY `grouping_type_id` (`grouping_type_id`), CONSTRAINT `FK_lams_learning_grouping_1` FOREIGN KEY (`grouping_type_id`) REFERENCES `lams_grouping_type` (`grouping_type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_grouping` -- LOCK TABLES `lams_grouping` WRITE; /*!40000 ALTER TABLE `lams_grouping` DISABLE KEYS */; INSERT INTO `lams_grouping` VALUES (1,NULL,3,NULL,NULL,2,NULL,0,0),(2,NULL,3,NULL,NULL,4,NULL,0,0),(3,NULL,3,NULL,NULL,6,NULL,0,0),(4,NULL,3,NULL,NULL,8,NULL,0,0); /*!40000 ALTER TABLE `lams_grouping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_grouping_support_type` -- DROP TABLE IF EXISTS `lams_grouping_support_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_grouping_support_type` ( `grouping_support_type_id` int(3) NOT NULL, `description` varchar(64) NOT NULL, PRIMARY KEY (`grouping_support_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_grouping_support_type` -- LOCK TABLES `lams_grouping_support_type` WRITE; /*!40000 ALTER TABLE `lams_grouping_support_type` DISABLE KEYS */; INSERT INTO `lams_grouping_support_type` VALUES (1,'NONE'),(2,'OPTIONAL'),(3,'REQUIRED'); /*!40000 ALTER TABLE `lams_grouping_support_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_grouping_type` -- DROP TABLE IF EXISTS `lams_grouping_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_grouping_type` ( `grouping_type_id` int(11) NOT NULL, `description` varchar(128) NOT NULL, PRIMARY KEY (`grouping_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_grouping_type` -- LOCK TABLES `lams_grouping_type` WRITE; /*!40000 ALTER TABLE `lams_grouping_type` DISABLE KEYS */; INSERT INTO `lams_grouping_type` VALUES (1,'RANDOM_GROUPING'),(2,'CHOSEN_GROUPING'),(3,'CLASS_GROUPING'),(4,'LEARNER_CHOICE_GROUPING'); /*!40000 ALTER TABLE `lams_grouping_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_input_activity` -- DROP TABLE IF EXISTS `lams_input_activity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_input_activity` ( `activity_id` bigint(20) NOT NULL, `input_activity_id` bigint(20) NOT NULL, UNIQUE KEY `UQ_lams_input_activity_1` (`activity_id`,`input_activity_id`), KEY `activity_id` (`activity_id`), KEY `activity_id_2` (`activity_id`), CONSTRAINT `FK_lams_input_activity_1` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_input_activity_2` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_input_activity` -- LOCK TABLES `lams_input_activity` WRITE; /*!40000 ALTER TABLE `lams_input_activity` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_input_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_learner_progress` -- DROP TABLE IF EXISTS `lams_learner_progress`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_learner_progress` ( `learner_progress_id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `lesson_id` bigint(20) NOT NULL, `lesson_completed_flag` tinyint(1) NOT NULL default '0', `waiting_flag` tinyint(4) NOT NULL, `start_date_time` datetime NOT NULL, `finish_date_time` datetime default NULL, `current_activity_id` bigint(20) default NULL, `next_activity_id` bigint(20) default NULL, `previous_activity_id` bigint(20) default NULL, `requires_restart_flag` tinyint(1) NOT NULL, PRIMARY KEY (`learner_progress_id`), UNIQUE KEY `IX_lams_learner_progress_1` (`user_id`,`lesson_id`), KEY `user_id` (`user_id`), KEY `lesson_id` (`lesson_id`), KEY `current_activity_id` (`current_activity_id`), KEY `next_activity_id` (`next_activity_id`), KEY `previous_activity_id` (`previous_activity_id`), CONSTRAINT `FK_lams_learner_progress_1` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`), CONSTRAINT `FK_lams_learner_progress_2` FOREIGN KEY (`lesson_id`) REFERENCES `lams_lesson` (`lesson_id`), CONSTRAINT `FK_lams_learner_progress_3` FOREIGN KEY (`current_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`), CONSTRAINT `FK_lams_learner_progress_4` FOREIGN KEY (`next_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`), CONSTRAINT `FK_lams_learner_progress_5` FOREIGN KEY (`previous_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_learner_progress` -- LOCK TABLES `lams_learner_progress` WRITE; /*!40000 ALTER TABLE `lams_learner_progress` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_learner_progress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_learning_activity` -- DROP TABLE IF EXISTS `lams_learning_activity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_learning_activity` ( `activity_id` bigint(20) NOT NULL auto_increment, `activity_ui_id` int(11) default NULL, `description` text, `title` varchar(255) default NULL, `help_text` text, `xcoord` int(11) default NULL, `ycoord` int(11) default NULL, `parent_activity_id` bigint(20) default NULL, `parent_ui_id` int(11) default NULL, `learning_activity_type_id` int(11) NOT NULL default '0', `grouping_support_type_id` int(3) NOT NULL, `apply_grouping_flag` tinyint(1) NOT NULL, `grouping_id` bigint(20) default NULL, `grouping_ui_id` int(11) default NULL, `order_id` int(11) default NULL, `define_later_flag` tinyint(4) NOT NULL default '0', `learning_design_id` bigint(20) default NULL, `learning_library_id` bigint(20) default NULL, `create_date_time` datetime NOT NULL, `run_offline_flag` tinyint(1) NOT NULL, `max_number_of_options` int(5) default NULL, `min_number_of_options` int(5) default NULL, `options_instructions` text, `tool_id` bigint(20) default NULL, `tool_content_id` bigint(20) default NULL, `activity_category_id` int(3) NOT NULL, `gate_activity_level_id` int(11) default NULL, `gate_open_flag` tinyint(1) default NULL, `gate_start_time_offset` bigint(38) default NULL, `gate_end_time_offset` bigint(38) default NULL, `gate_start_date_time` datetime default NULL, `gate_end_date_time` datetime default NULL, `library_activity_ui_image` varchar(255) default NULL, `create_grouping_id` bigint(20) default NULL, `create_grouping_ui_id` int(11) default NULL, `library_activity_id` bigint(20) default NULL, `language_file` varchar(255) default NULL, `system_tool_id` bigint(20) default NULL, `read_only` tinyint(4) default '0', `initialised` tinyint(4) default '0', `default_activity_id` bigint(20) default NULL, `start_xcoord` int(11) default NULL, `start_ycoord` int(11) default NULL, `end_xcoord` int(11) default NULL, `end_ycoord` int(11) default NULL, `stop_after_activity` tinyint(4) NOT NULL default '0', PRIMARY KEY (`activity_id`), KEY `learning_library_id` (`learning_library_id`), KEY `learning_design_id` (`learning_design_id`), KEY `parent_activity_id` (`parent_activity_id`), KEY `learning_activity_type_id` (`learning_activity_type_id`), KEY `grouping_id` (`grouping_id`), KEY `tool_id` (`tool_id`), KEY `gate_activity_level_id` (`gate_activity_level_id`), KEY `create_grouping_id` (`create_grouping_id`), KEY `library_activity_id` (`library_activity_id`), KEY `activity_category_id` (`activity_category_id`), KEY `grouping_support_type_id` (`grouping_support_type_id`), KEY `system_tool_id` (`system_tool_id`), CONSTRAINT `FK_lams_learning_activity_7` FOREIGN KEY (`learning_library_id`) REFERENCES `lams_learning_library` (`learning_library_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_learning_activity_6` FOREIGN KEY (`learning_design_id`) REFERENCES `lams_learning_design` (`learning_design_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_learning_activity_2` FOREIGN KEY (`parent_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_learning_activity_3` FOREIGN KEY (`learning_activity_type_id`) REFERENCES `lams_learning_activity_type` (`learning_activity_type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_learning_activity_6` FOREIGN KEY (`grouping_id`) REFERENCES `lams_grouping` (`grouping_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_learning_activity_8` FOREIGN KEY (`tool_id`) REFERENCES `lams_tool` (`tool_id`), CONSTRAINT `FK_lams_learning_activity_10` FOREIGN KEY (`gate_activity_level_id`) REFERENCES `lams_gate_activity_level` (`gate_activity_level_id`), CONSTRAINT `FK_lams_learning_activity_9` FOREIGN KEY (`create_grouping_id`) REFERENCES `lams_grouping` (`grouping_id`), CONSTRAINT `FK_lams_learning_activity_11` FOREIGN KEY (`library_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`), CONSTRAINT `FK_lams_learning_activity_12` FOREIGN KEY (`activity_category_id`) REFERENCES `lams_activity_category` (`activity_category_id`), CONSTRAINT `FK_lams_learning_activity_13` FOREIGN KEY (`grouping_support_type_id`) REFERENCES `lams_grouping_support_type` (`grouping_support_type_id`), CONSTRAINT `FK_lams_learning_activity_14` FOREIGN KEY (`system_tool_id`) REFERENCES `lams_system_tool` (`system_tool_id`) ) ENGINE=InnoDB AUTO_INCREMENT=146 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_learning_activity` -- LOCK TABLES `lams_learning_activity` WRITE; /*!40000 ALTER TABLE `lams_learning_activity` DISABLE KEYS */; INSERT INTO `lams_learning_activity` VALUES (1,NULL,'Forum/Message Board','Forum','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,1,'2009-05-21 17:32:48',0,NULL,NULL,NULL,1,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lafrum11/images/icon_forum.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.forum.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(2,NULL,'Displays a NoticeboardX','NoticeboardX','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,2,'2009-05-21 17:32:53',0,NULL,NULL,NULL,2,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.noticeboard.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(3,NULL,'Allows creation and use of question and answer format','Question and Answer','Help text',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,3,'2009-05-21 17:32:58',0,NULL,NULL,NULL,3,NULL,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laqa11/images/icon_questionanswer.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.qa.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(4,NULL,'Uploading of files by learners, for review by teachers.','Submit File','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,4,'2009-05-21 17:33:02',0,NULL,NULL,NULL,4,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasbmt11/images/icon_reportsubmission.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.sbmt.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(5,NULL,'Chat Tool','Chat Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,5,'2009-05-21 17:33:09',0,NULL,NULL,NULL,5,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lachat11/images/icon_chat.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.chat.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(6,NULL,'Share Resources','Share Resources','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,6,'2009-05-21 17:33:16',0,NULL,NULL,NULL,6,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.rsrc.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(7,NULL,'Allows creation and use of voting format','Voting','Help text',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,7,'2009-05-21 17:33:20',0,NULL,NULL,NULL,7,NULL,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lavote11/images/icon_ranking.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.vote.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(8,NULL,'Notebook Tool','Notebook Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,8,'2009-05-21 17:33:25',0,NULL,NULL,NULL,8,NULL,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lantbk11/images/icon_notebook.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.notebook.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(9,NULL,'Survey','Survey','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,9,'2009-05-21 17:33:33',0,NULL,NULL,NULL,9,NULL,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasurv11/images/icon_survey.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.survey.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(10,NULL,'Scribe Tool','Scribe Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,10,'2009-05-21 17:33:40',0,NULL,NULL,NULL,10,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lascrb11/images/icon_scribe.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.scribe.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(11,NULL,'TaskList','TaskList','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,11,'2009-05-21 17:33:47',0,NULL,NULL,NULL,11,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/latask10/images/icon_taskList.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.taskList.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(12,NULL,'Gmap Tool','Gmap Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,12,'2009-05-21 17:33:53',0,NULL,NULL,NULL,12,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lagmap10/images/icon_gmap.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.gmap.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(13,NULL,'Spreadsheet','Spreadsheet','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,13,'2009-05-21 17:33:59',0,NULL,NULL,NULL,13,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasprd10/images/icon_spreadsheet.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(14,NULL,'Collecting data with custom structure.','Data Collection','Asking questions with custom, limited answers.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,14,'2009-05-21 17:34:05',0,NULL,NULL,NULL,14,NULL,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/ladaco10/images/icon_daco.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.daco.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(15,NULL,'Wiki Tool','Wiki Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,15,'2009-05-21 17:34:11',0,NULL,NULL,NULL,15,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lawiki10/images/icon_wiki.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.wiki.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(16,NULL,'ImageGallery','ImageGallery','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,16,'2009-05-21 17:34:19',0,NULL,NULL,NULL,16,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laimag10/images/icon_imageGallery.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.imageGallery.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(17,NULL,'Dimdim Tool','Dimdim Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,17,'2009-05-21 17:34:24',0,NULL,NULL,NULL,17,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laddim10/images/icon_dimdim.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.dimdim.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(18,NULL,'VideoRecorder Tool','VideoRecorder Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,18,'2009-05-21 17:34:31',0,NULL,NULL,NULL,18,NULL,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lavidr10/images/icon_videoRecorder.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.videoRecorder.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(19,NULL,'Mindmap Tool','Mindmap Tool','Mindmap Tool for creating mindmaps.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,19,'2009-05-21 17:34:37',0,NULL,NULL,NULL,19,NULL,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lamind10/images/icon_mindmap.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.mindmap.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(20,NULL,'Assessment','Assessment','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,20,'2009-05-21 17:34:44',0,NULL,NULL,NULL,20,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laasse10/images/icon_assessment.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.assessment.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(21,NULL,'Pixlr Tool','Pixlr Tool','Put some help text here.',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,21,'2009-05-21 17:34:50',0,NULL,NULL,NULL,21,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lapixl10/images/icon_pixlr.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.pixlr.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(22,NULL,'Allows creation and use of multiple choice questioning format','Multiple Choice Questions','Help text',NULL,NULL,NULL,NULL,1,2,0,NULL,NULL,NULL,0,NULL,22,'2009-05-21 17:34:53',0,NULL,NULL,NULL,22,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lamc11/images/icon_mcq.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.mc.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(23,NULL,'Combined Share Resources and Forum','Discuss Shared Resources','Learners to discuss items they have viewed via Share Resources.',NULL,NULL,NULL,NULL,6,2,0,NULL,NULL,NULL,0,NULL,23,'2009-05-21 17:34:54',0,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,'images/icon_urlcontentmessageboard.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.library.llid23.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(24,NULL,'Share Resources','Share Resources','Share Resources',NULL,NULL,23,NULL,1,2,0,NULL,NULL,NULL,0,NULL,NULL,'2009-05-21 17:34:54',0,NULL,NULL,NULL,6,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.rsrc.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(25,NULL,'Forum/Message Board','Forum','Forum/Message Board',NULL,NULL,23,NULL,1,2,0,NULL,NULL,NULL,0,NULL,NULL,'2009-05-21 17:34:54',0,NULL,NULL,NULL,1,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lafrum11/images/icon_forum.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.forum.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(26,NULL,'Combined Chat and Scribe','Prepare Group Report','Learners to prepare group report, discussing report in chat',NULL,NULL,NULL,NULL,6,2,0,NULL,NULL,NULL,0,NULL,24,'2009-05-21 17:34:55',0,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,'images/icon_groupreporting.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.library.llid24.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(27,NULL,'Chat Tool','Chat Tool','Chat',NULL,NULL,26,NULL,1,2,0,NULL,NULL,NULL,0,NULL,NULL,'2009-05-21 17:34:55',0,NULL,NULL,NULL,5,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lachat11/images/icon_chat.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.chat.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(28,NULL,'Scribe Tool','Scribe Tool','Scribe',NULL,NULL,26,NULL,1,2,0,NULL,NULL,NULL,0,NULL,NULL,'2009-05-21 17:34:55',0,NULL,NULL,NULL,10,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lascrb11/images/icon_scribe.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.scribe.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(29,NULL,'Combined Chat and Scribe','Prepare Group Report','Learners to prepare group report, discussing report in chat',NULL,NULL,NULL,NULL,6,2,0,NULL,NULL,NULL,0,NULL,25,'2009-05-21 17:34:56',0,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,'images/icon_forum_and_scribe.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.library.llid25.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(30,NULL,'Forum/Message Board','Forum','Forum/Message Board',NULL,NULL,29,NULL,1,2,0,NULL,NULL,NULL,0,NULL,NULL,'2009-05-21 17:34:56',0,NULL,NULL,NULL,1,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lafrum11/images/icon_forum.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.forum.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(31,NULL,'Scribe Tool','Scribe Tool','Scribe',NULL,NULL,29,NULL,1,2,0,NULL,NULL,NULL,0,NULL,NULL,'2009-05-21 17:34:56',0,NULL,NULL,NULL,10,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lascrb11/images/icon_scribe.swf',NULL,NULL,NULL,'org.lamsfoundation.lams.tool.scribe.ApplicationResources',NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(32,1,'Tool for displaying HTML content including external sources such as images and other media.','Introduction','Displays formatted text and links to external sources on a read only page.',20,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,2,23,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(33,4,'Tool for displaying HTML content including external sources such as images and other media.','fckEditor Plugins','Displays formatted text and links to external sources on a read only page.',240,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,2,24,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(34,88,'Pixlr Image Editing Tool','Pixlr','Edit images in Pixlr image editor',460,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,21,25,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lapixl10/images/icon_pixlr.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(35,92,'Gallery to share images with others.','Image Gallery','Uploading your images to share with others.',680,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,16,26,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laimag10/images/icon_imageGallery.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(36,94,'Tool for displaying HTML content including external sources such as images and other media.','Assessment and Gradebook','Displays formatted text and links to external sources on a read only page.',460,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,2,27,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(37,97,'Tool for displaying HTML content including external sources such as images and other media.','Wrapping Up','Displays formatted text and links to external sources on a read only page.',680,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,2,28,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(38,101,'Mindmap Tool','Mindmap','Mindmap for making mindmaps',20,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,19,29,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lamind10/images/icon_mindmap.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(39,104,'Tool for displaying HTML content including external sources such as images and other media.','Video Recorder Demo','Displays formatted text and links to external sources on a read only page.',240,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,1,NULL,'2009-05-21 17:38:03',0,NULL,NULL,NULL,2,30,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(40,1,'Tool for displaying HTML content including external sources such as images and other media.','Introduction','Displays formatted text and links to external sources on a read only page.',19,33,NULL,NULL,1,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,31,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(41,2,'Tool for displaying HTML content including external sources such as images and other media.','Informative Tools','Displays formatted text and links to external sources on a read only page.',190,33,NULL,NULL,1,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,32,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(42,4,'Tool for displaying HTML content including external sources such as images and other media.','Fancy Noticeboard','Displays formatted text and links to external sources on a read only page.',384,34,NULL,NULL,1,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,33,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(43,6,'Sharing resource with others.','Share Resources','Uploading your resources to share with others.',19,99,NULL,NULL,1,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,6,34,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(44,8,'Which activity type would you like to learn about next? Select an option below then click CHOOSE. You can come back to this screen and select a different activity type to learn about if you wish.','Activity Types - Choose One',NULL,25,191,NULL,NULL,13,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,3,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(45,40,'Tool for displaying HTML content including external sources such as images and other media.','Winding Up','Displays formatted text and links to external sources on a read only page.',268,470,NULL,NULL,1,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,35,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(46,9,NULL,'Assessment - Collect Learner Responses',NULL,4,48,44,8,8,2,0,NULL,NULL,1,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,47,NULL,NULL,NULL,NULL,0),(47,13,'Tool for displaying HTML content including external sources such as images and other media.','Assessment Activities','Displays formatted text and links to external sources on a read only page.',5,5,46,9,1,2,0,NULL,NULL,1,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,36,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(48,64,'Spreadsheet.','Spreadsheet','Spreadsheet Tool.',219,107,NULL,NULL,1,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,13,37,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasprd10/images/icon_spreadsheet.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(49,74,'Tool for displaying HTML content including external sources such as images and other media.','Dimdim Discussion','Displays formatted text and links to external sources on a read only page.',56,472,NULL,NULL,1,2,0,NULL,NULL,NULL,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,38,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(50,10,NULL,'Collaborative - Get Learners to Work Together',NULL,4,105,44,8,8,2,0,NULL,NULL,2,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,66,NULL,NULL,NULL,NULL,0),(51,16,'Creates automated assessment questions. e.g. Multiple choice and true/false questions. Can provide feedback and scores.','Demo Multiple Choice','Learner answers a series of automated assessment questions. e.g. Multiple choice and true/false questions. Optional features include feedback on each question and scoring. Questions are weighted for scoring.',65,5,46,9,1,2,0,NULL,NULL,2,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,22,42,3,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lamc11/images/icon_mcq.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(52,22,'Tool for displaying HTML content including external sources such as images and other media.','Split-Screen Activities','Displays formatted text and links to external sources on a read only page.',65,5,50,10,1,2,0,NULL,NULL,2,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,43,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(53,12,NULL,'Reflective - \'Capture\' Students Learning',NULL,4,162,44,8,8,2,0,NULL,NULL,3,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,65,NULL,NULL,NULL,NULL,0),(54,30,'Tool to create Surveys','Survey','Answer surveys.',124,5,53,12,1,2,0,NULL,NULL,3,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,9,46,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasurv11/images/icon_survey.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(55,18,'Learners submit files for assessment by the teacher. Scores and comments may be exported as a spreadsheet.','Demo Submit Files','Learners submit files for assessment by the teacher. Scores and comments for each learner are recorded and may be exported as a spreadsheet.',124,5,46,9,1,2,0,NULL,NULL,3,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,4,47,3,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasbmt11/images/icon_reportsubmission.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(56,60,'Combined Share Resources and Forum ','Resources and Forum','The top window has a Share Resources area and the bottom window has a forum for learners to discuss items they have view via the Share Resources area.',124,5,50,10,6,2,0,NULL,NULL,3,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,'images/icon_urlcontentmessageboard.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(57,32,'Allows voting format','Voting','Voting help text',184,5,53,12,1,2,0,NULL,NULL,4,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,7,48,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lavote11/images/icon_ranking.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(58,77,'Tool for displaying HTML content including external sources such as images and other media.','New Collaboratives','Displays formatted text and links to external sources on a read only page.',184,5,50,10,1,2,0,NULL,NULL,4,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,49,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(59,36,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',243,5,53,12,1,2,0,NULL,NULL,5,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,50,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(60,67,'Google Mapping Tool','Gmap','Gmap for marking world map points',243,5,50,10,1,2,0,NULL,NULL,5,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,12,51,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lagmap10/images/icon_gmap.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(61,34,'Notebook Tool','Notebook','Notebook for notes and reflections',303,5,53,12,1,2,0,NULL,NULL,6,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,8,52,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lantbk11/images/icon_notebook.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(62,69,'Wiki Tool','Wiki','Wiki tool for creating wiki pages',303,5,50,10,1,2,0,NULL,NULL,6,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,15,53,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lawiki10/images/icon_wiki.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(63,83,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',362,5,53,12,1,2,0,NULL,NULL,7,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,54,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(64,71,'Collecting data with custom structure.','Data Collection','Asking questions with custom, limited answers.',422,5,53,12,1,2,0,NULL,NULL,8,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,14,55,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/ladaco10/images/icon_daco.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(65,15,'Tool for displaying HTML content including external sources such as images and other media.','Reflective Intro','Displays formatted text and links to external sources on a read only page.',5,5,53,12,1,2,0,NULL,NULL,1,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,39,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(66,14,'Tool for displaying HTML content including external sources such as images and other media.','Collaborative Intro','Displays formatted text and links to external sources on a read only page.',5,5,50,10,1,2,0,NULL,NULL,1,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,2,40,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(67,61,'Sharing resource with others.','Share Resources','Uploading your resources to share with others.',8,45,56,60,1,2,0,NULL,NULL,1,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,6,41,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(68,28,'Each learner answers question(s) and then sees answers from all learners collated on the next page.','Q and A','Each learner answers one or more questions in short answer format and then sees answers from all learners collated on the next page.',65,5,53,12,1,2,0,NULL,NULL,2,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,3,44,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laqa11/images/icon_questionanswer.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(69,62,'Online threaded discussion tool (asynchronous).','Forum','Discussion tool useful for long running collaborations and situations where learners are not all on line at the same time.',8,108,56,60,1,2,0,NULL,NULL,2,0,2,NULL,'2009-05-21 17:38:09',0,NULL,NULL,NULL,1,45,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lafrum11/images/icon_forum.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(70,1,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',46,213,NULL,NULL,1,2,0,NULL,NULL,NULL,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,2,56,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(71,4,'Choose one of the four options below to learn more about that particular aspect of LAMS.','Optional Sequences',NULL,254,100,NULL,NULL,13,2,0,NULL,NULL,NULL,0,3,NULL,'2009-05-21 17:38:15',0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(72,5,NULL,'The Learning Environment (Participate in a Lesson)',NULL,4,48,71,4,8,2,0,NULL,NULL,1,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,73,NULL,NULL,NULL,NULL,0),(73,20,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',5,5,72,5,1,2,0,NULL,NULL,1,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,2,57,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(74,25,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',558,210,NULL,NULL,1,2,0,NULL,NULL,NULL,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,2,58,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(75,13,'Sharing resource with others.','Learner Wink','Uploading your resources to share with others.',65,5,72,5,1,2,0,NULL,NULL,2,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,6,62,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(76,6,NULL,'The Authoring Environment (Create a Lesson)',NULL,4,105,71,4,8,2,0,NULL,NULL,2,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,82,NULL,NULL,NULL,NULL,0),(77,8,NULL,'The Monitoring Environment (Teach a Lesson)',NULL,4,162,71,4,8,2,0,NULL,NULL,3,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,80,NULL,NULL,NULL,NULL,0),(78,23,'Sharing resource with others.','NoFlash Wink','Uploading your resources to share with others.',124,5,72,5,1,2,0,NULL,NULL,3,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,6,64,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(79,16,NULL,'System Administration [Online Link]',NULL,4,219,71,4,8,2,0,NULL,NULL,4,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,81,NULL,NULL,NULL,NULL,0),(80,15,'Sharing resource with others.','Monitor Wink','Uploading your resources to share with others.',5,5,77,8,1,2,0,NULL,NULL,1,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,6,59,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(81,17,'Sharing resource with others.','Share Resources','Uploading your resources to share with others.',5,5,79,16,1,2,0,NULL,NULL,1,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,6,60,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(82,14,'Sharing resource with others.','Author Wink','Uploading your resources to share with others.',5,5,76,6,1,2,0,NULL,NULL,1,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,6,61,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(83,50,'Tool for displaying HTML content including external sources such as images and other media.','Structure of LAMS','Displays formatted text and links to external sources on a read only page.',65,5,77,8,1,2,0,NULL,NULL,2,0,3,NULL,'2009-05-21 17:38:15',0,NULL,NULL,NULL,2,63,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(84,1,'Tool for displaying HTML content including external sources such as images and other media.','Introduction','Displays formatted text and links to external sources on a read only page.',40,51,NULL,NULL,1,2,0,NULL,NULL,NULL,0,4,NULL,'2009-05-21 17:38:20',0,NULL,NULL,NULL,2,65,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(85,8,'Tool for displaying HTML content including external sources such as images and other media.','Visual Authoring','Displays formatted text and links to external sources on a read only page.',33,166,NULL,NULL,1,2,0,NULL,NULL,NULL,0,4,NULL,'2009-05-21 17:38:20',0,NULL,NULL,NULL,2,66,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(86,10,'Sharing resource with others.','Authoring Environment','Uploading your resources to share with others.',235,171,NULL,NULL,1,2,0,NULL,NULL,NULL,0,4,NULL,'2009-05-21 17:38:20',0,NULL,NULL,NULL,6,67,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(87,12,'Tool for displaying HTML content including external sources such as images and other media.','Summing Up','Displays formatted text and links to external sources on a read only page.',425,170,NULL,NULL,1,2,0,NULL,NULL,NULL,0,4,NULL,'2009-05-21 17:38:20',0,NULL,NULL,NULL,2,68,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(88,21,'Sharing resource with others.','Effective Learning','Uploading your resources to share with others.',227,47,NULL,NULL,1,2,0,NULL,NULL,NULL,0,4,NULL,'2009-05-21 17:38:20',0,NULL,NULL,NULL,6,69,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0),(89,97,'Tool for displaying HTML content including external sources such as images and other media.','Wrapping Up','Displays formatted text and links to external sources on a read only page.',680,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,2,73,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(90,94,'Tool for displaying HTML content including external sources such as images and other media.','Assessment and Gradebook','Displays formatted text and links to external sources on a read only page.',460,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,2,76,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(91,92,'Gallery to share images with others.','Image Gallery','Uploading your images to share with others.',680,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,16,70,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laimag10/images/icon_imageGallery.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(92,88,'Pixlr Image Editing Tool','Pixlr','Edit images in Pixlr image editor',460,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,21,77,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lapixl10/images/icon_pixlr.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(93,104,'Tool for displaying HTML content including external sources such as images and other media.','Video Recorder Demo','Displays formatted text and links to external sources on a read only page.',240,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,2,74,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(94,101,'Mindmap Tool','Mindmap','Mindmap for making mindmaps',20,117,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,19,72,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lamind10/images/icon_mindmap.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(95,4,'Tool for displaying HTML content including external sources such as images and other media.','fckEditor Plugins','Displays formatted text and links to external sources on a read only page.',240,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,2,71,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(96,1,'Tool for displaying HTML content including external sources such as images and other media.','Introduction','Displays formatted text and links to external sources on a read only page.',20,35,NULL,NULL,1,2,0,NULL,NULL,NULL,0,5,NULL,'2009-05-21 17:38:28',0,NULL,NULL,NULL,2,75,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(97,69,'Wiki Tool','Wiki','Wiki tool for creating wiki pages',303,5,124,10,1,2,0,NULL,NULL,6,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,15,85,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lawiki10/images/icon_wiki.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(98,67,'Google Mapping Tool','Gmap','Gmap for marking world map points',243,5,124,10,1,2,0,NULL,NULL,5,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,12,89,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lagmap10/images/icon_gmap.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(99,8,'Which activity type would you like to learn about next? Select an option below then click CHOOSE. You can come back to this screen and select a different activity type to learn about if you wish.','Activity Types - Choose One',NULL,25,191,NULL,NULL,13,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:12',0,NULL,3,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(100,64,'Spreadsheet.','Spreadsheet','Spreadsheet Tool.',219,107,NULL,NULL,1,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,13,79,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasprd10/images/icon_spreadsheet.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(101,6,'Sharing resource with others.','Share Resources','Uploading your resources to share with others.',19,99,NULL,NULL,1,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,6,81,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(102,4,'Tool for displaying HTML content including external sources such as images and other media.','Fancy Noticeboard','Displays formatted text and links to external sources on a read only page.',384,34,NULL,NULL,1,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,2,83,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(103,2,'Tool for displaying HTML content including external sources such as images and other media.','Informative Tools','Displays formatted text and links to external sources on a read only page.',190,33,NULL,NULL,1,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,2,80,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(104,1,'Tool for displaying HTML content including external sources such as images and other media.','Introduction','Displays formatted text and links to external sources on a read only page.',19,33,NULL,NULL,1,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,2,82,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(105,22,'Tool for displaying HTML content including external sources such as images and other media.','Split-Screen Activities','Displays formatted text and links to external sources on a read only page.',65,5,124,10,1,2,0,NULL,NULL,2,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,2,88,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(106,14,'Tool for displaying HTML content including external sources such as images and other media.','Collaborative Intro','Displays formatted text and links to external sources on a read only page.',5,5,124,10,1,2,0,NULL,NULL,1,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,2,84,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(107,36,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',243,5,126,12,1,2,0,NULL,NULL,5,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,2,99,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(108,32,'Allows voting format','Voting','Voting help text',184,5,126,12,1,2,0,NULL,NULL,4,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,7,97,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lavote11/images/icon_ranking.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(109,30,'Tool to create Surveys','Survey','Answer surveys.',124,5,126,12,1,2,0,NULL,NULL,3,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,9,95,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasurv11/images/icon_survey.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(110,28,'Each learner answers question(s) and then sees answers from all learners collated on the next page.','Q and A','Each learner answers one or more questions in short answer format and then sees answers from all learners collated on the next page.',65,5,126,12,1,2,0,NULL,NULL,2,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,3,98,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/laqa11/images/icon_questionanswer.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(111,77,'Tool for displaying HTML content including external sources such as images and other media.','New Collaboratives','Displays formatted text and links to external sources on a read only page.',184,5,124,10,1,2,0,NULL,NULL,4,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,2,90,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(112,18,'Learners submit files for assessment by the teacher. Scores and comments may be exported as a spreadsheet.','Demo Submit Files','Learners submit files for assessment by the teacher. Scores and comments for each learner are recorded and may be exported as a spreadsheet.',124,5,122,9,1,2,0,NULL,NULL,3,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,4,93,3,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lasbmt11/images/icon_reportsubmission.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(113,16,'Creates automated assessment questions. e.g. Multiple choice and true/false questions. Can provide feedback and scores.','Demo Multiple Choice','Learner answers a series of automated assessment questions. e.g. Multiple choice and true/false questions. Optional features include feedback on each question and scoring. Questions are weighted for scoring.',65,5,122,9,1,2,0,NULL,NULL,2,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,22,91,3,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lamc11/images/icon_mcq.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(114,83,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',362,5,126,12,1,2,0,NULL,NULL,7,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,2,100,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(115,34,'Notebook Tool','Notebook','Notebook for notes and reflections',303,5,126,12,1,2,0,NULL,NULL,6,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,8,96,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lantbk11/images/icon_notebook.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(116,13,'Tool for displaying HTML content including external sources such as images and other media.','Assessment Activities','Displays formatted text and links to external sources on a read only page.',5,5,122,9,1,2,0,NULL,NULL,1,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,2,92,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(117,15,'Tool for displaying HTML content including external sources such as images and other media.','Reflective Intro','Displays formatted text and links to external sources on a read only page.',5,5,126,12,1,2,0,NULL,NULL,1,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,2,94,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(118,71,'Collecting data with custom structure.','Data Collection','Asking questions with custom, limited answers.',422,5,126,12,1,2,0,NULL,NULL,8,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,14,101,6,NULL,NULL,NULL,NULL,NULL,NULL,'tool/ladaco10/images/icon_daco.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(119,40,'Tool for displaying HTML content including external sources such as images and other media.','Winding Up','Displays formatted text and links to external sources on a read only page.',268,470,NULL,NULL,1,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,2,102,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(120,74,'Tool for displaying HTML content including external sources such as images and other media.','Dimdim Discussion','Displays formatted text and links to external sources on a read only page.',56,472,NULL,NULL,1,2,0,NULL,NULL,NULL,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,2,78,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(121,60,'Combined Share Resources and Forum ','Resources and Forum','The top window has a Share Resources area and the bottom window has a forum for learners to discuss items they have view via the Share Resources area.',124,5,124,10,6,2,0,NULL,NULL,3,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,'images/icon_urlcontentmessageboard.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(122,9,NULL,'Assessment - Collect Learner Responses',NULL,4,48,99,8,8,2,0,NULL,NULL,1,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,116,NULL,NULL,NULL,NULL,0),(123,61,'Sharing resource with others.','Share Resources','Uploading your resources to share with others.',8,45,121,60,1,2,0,NULL,NULL,1,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,6,87,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(124,10,NULL,'Collaborative - Get Learners to Work Together',NULL,4,105,99,8,8,2,0,NULL,NULL,2,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,106,NULL,NULL,NULL,NULL,0),(125,62,'Online threaded discussion tool (asynchronous).','Forum','Discussion tool useful for long running collaborations and situations where learners are not all on line at the same time.',8,108,121,60,1,2,0,NULL,NULL,2,0,6,NULL,'2009-05-21 17:39:12',0,NULL,NULL,NULL,1,86,2,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lafrum11/images/icon_forum.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(126,12,NULL,'Reflective - \'Capture\' Students Learning',NULL,4,162,99,8,8,2,0,NULL,NULL,3,0,6,NULL,'2009-05-21 17:39:13',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,117,NULL,NULL,NULL,NULL,0),(127,23,'Sharing resource with others.','NoFlash Wink','Uploading your resources to share with others.',124,5,135,5,1,2,0,NULL,NULL,3,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,6,109,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(128,13,'Sharing resource with others.','Learner Wink','Uploading your resources to share with others.',65,5,135,5,1,2,0,NULL,NULL,2,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,6,110,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(129,25,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',558,210,NULL,NULL,1,2,0,NULL,NULL,NULL,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,2,104,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(130,4,'Choose one of the four options below to learn more about that particular aspect of LAMS.','Optional Sequences',NULL,254,100,NULL,NULL,13,2,0,NULL,NULL,NULL,0,7,NULL,'2009-05-21 17:39:20',0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(131,1,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',46,213,NULL,NULL,1,2,0,NULL,NULL,NULL,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,2,103,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(132,50,'Tool for displaying HTML content including external sources such as images and other media.','Structure of LAMS','Displays formatted text and links to external sources on a read only page.',65,5,139,8,1,2,0,NULL,NULL,2,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,2,107,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(133,15,'Sharing resource with others.','Monitor Wink','Uploading your resources to share with others.',5,5,139,8,1,2,0,NULL,NULL,1,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,6,106,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(134,20,'Tool for displaying HTML content including external sources such as images and other media.','Noticeboard','Displays formatted text and links to external sources on a read only page.',5,5,135,5,1,2,0,NULL,NULL,1,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,2,108,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(135,5,NULL,'The Learning Environment (Participate in a Lesson)',NULL,4,48,130,4,8,2,0,NULL,NULL,1,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,134,NULL,NULL,NULL,NULL,0),(136,14,'Sharing resource with others.','Author Wink','Uploading your resources to share with others.',5,5,138,6,1,2,0,NULL,NULL,1,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,6,111,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(137,17,'Sharing resource with others.','Share Resources','Uploading your resources to share with others.',5,5,140,16,1,2,0,NULL,NULL,1,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,6,105,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(138,6,NULL,'The Authoring Environment (Create a Lesson)',NULL,4,105,130,4,8,2,0,NULL,NULL,2,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,136,NULL,NULL,NULL,NULL,0),(139,8,NULL,'The Monitoring Environment (Teach a Lesson)',NULL,4,162,130,4,8,2,0,NULL,NULL,3,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,133,NULL,NULL,NULL,NULL,0),(140,16,NULL,'System Administration [Online Link]',NULL,4,219,130,4,8,2,0,NULL,NULL,4,0,7,NULL,'2009-05-21 17:39:20',0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,137,NULL,NULL,NULL,NULL,0),(141,12,'Tool for displaying HTML content including external sources such as images and other media.','Summing Up','Displays formatted text and links to external sources on a read only page.',425,170,NULL,NULL,1,2,0,NULL,NULL,NULL,0,8,NULL,'2009-05-21 17:39:28',0,NULL,NULL,NULL,2,116,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(142,10,'Sharing resource with others.','Authoring Environment','Uploading your resources to share with others.',235,171,NULL,NULL,1,2,0,NULL,NULL,NULL,0,8,NULL,'2009-05-21 17:39:28',0,NULL,NULL,NULL,6,113,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(143,8,'Tool for displaying HTML content including external sources such as images and other media.','Visual Authoring','Displays formatted text and links to external sources on a read only page.',33,166,NULL,NULL,1,2,0,NULL,NULL,NULL,0,8,NULL,'2009-05-21 17:39:28',0,NULL,NULL,NULL,2,112,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(144,21,'Sharing resource with others.','Effective Learning','Uploading your resources to share with others.',227,47,NULL,NULL,1,2,0,NULL,NULL,NULL,0,8,NULL,'2009-05-21 17:39:28',0,NULL,NULL,NULL,6,114,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/larsrc11/images/icon_rsrc.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0),(145,1,'Tool for displaying HTML content including external sources such as images and other media.','Introduction','Displays formatted text and links to external sources on a read only page.',40,51,NULL,NULL,1,2,0,NULL,NULL,NULL,0,8,NULL,'2009-05-21 17:39:28',0,NULL,NULL,NULL,2,115,4,NULL,NULL,NULL,NULL,NULL,NULL,'tool/lanb11/images/icon_htmlnb.swf',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `lams_learning_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_learning_activity_type` -- DROP TABLE IF EXISTS `lams_learning_activity_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_learning_activity_type` ( `learning_activity_type_id` int(11) NOT NULL default '0', `description` varchar(255) NOT NULL, PRIMARY KEY (`learning_activity_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_learning_activity_type` -- LOCK TABLES `lams_learning_activity_type` WRITE; /*!40000 ALTER TABLE `lams_learning_activity_type` DISABLE KEYS */; INSERT INTO `lams_learning_activity_type` VALUES (1,'TOOL'),(2,'GROUPING'),(3,'GATE_SYNCH'),(4,'GATE_SCHEDULE'),(5,'GATE_PERMISSION'),(6,'PARALLEL'),(7,'OPTIONS'),(8,'SEQUENCE'),(9,'GATE_SYSTEM'),(10,'BRANCHING_CHOSEN'),(11,'BRANCHING_GROUP'),(12,'BRANCHING_TOOL'),(13,'OPTIONS_WITH_SEQUENCES'),(14,'GATE_CONDITION'),(15,'FLOATING'); /*!40000 ALTER TABLE `lams_learning_activity_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_learning_design` -- DROP TABLE IF EXISTS `lams_learning_design`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_learning_design` ( `learning_design_id` bigint(20) NOT NULL auto_increment, `learning_design_ui_id` int(11) default NULL, `description` text, `title` varchar(255) default NULL, `first_activity_id` bigint(20) default NULL, `floating_activity_id` bigint(20) default NULL, `max_id` int(11) default NULL, `valid_design_flag` tinyint(4) NOT NULL, `read_only_flag` tinyint(4) NOT NULL, `date_read_only` datetime default NULL, `user_id` bigint(20) NOT NULL, `help_text` text, `online_instructions` text, `offline_instructions` text, `copy_type_id` tinyint(4) NOT NULL, `create_date_time` datetime NOT NULL, `version` varchar(56) default NULL, `original_learning_design_id` bigint(20) default NULL, `workspace_folder_id` bigint(20) default NULL, `duration` bigint(38) default NULL, `license_id` bigint(20) default NULL, `license_text` text, `last_modified_date_time` datetime default NULL, `content_folder_id` varchar(32) default NULL, `edit_override_lock` tinyint(4) default '0', `edit_override_user_id` bigint(20) default NULL, `design_version` int(11) default '1', PRIMARY KEY (`learning_design_id`), KEY `user_id` (`user_id`), KEY `workspace_folder_id` (`workspace_folder_id`), KEY `license_id` (`license_id`), KEY `copy_type_id` (`copy_type_id`), KEY `edit_override_user_id` (`edit_override_user_id`), KEY `idx_design_parent_id` (`original_learning_design_id`), KEY `idx_design_first_act` (`first_activity_id`), KEY `idx_design_floating_act` (`floating_activity_id`), CONSTRAINT `FK_lams_learning_design_3` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`), CONSTRAINT `FK_lams_learning_design_4` FOREIGN KEY (`workspace_folder_id`) REFERENCES `lams_workspace_folder` (`workspace_folder_id`), CONSTRAINT `FK_lams_learning_design_5` FOREIGN KEY (`license_id`) REFERENCES `lams_license` (`license_id`), CONSTRAINT `FK_lams_learning_design_6` FOREIGN KEY (`copy_type_id`) REFERENCES `lams_copy_type` (`copy_type_id`), CONSTRAINT `FK_lams_learning_design_7` FOREIGN KEY (`edit_override_user_id`) REFERENCES `lams_user` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_learning_design` -- LOCK TABLES `lams_learning_design` WRITE; /*!40000 ALTER TABLE `lams_learning_design` DISABLE KEYS */; INSERT INTO `lams_learning_design` VALUES (1,NULL,'Lesson 4 in the LAMS 101 course demonstrates the new features added to the LAMS 2.3 release.','Lesson 4 - Whats New In 2.3',32,NULL,106,1,0,NULL,5,NULL,NULL,NULL,1,'2009-05-21 17:38:03','2.2.0.200905180215',NULL,5,NULL,1,NULL,'2009-05-21 17:38:03','4028efbb1935b8d301193606f5000051',0,NULL,1),(2,NULL,'Final lesson in the LAMS101 course. Discusses all of the tools available in LAMS and gives demonstrations of each in action.This is a new version of this sequence, which discusses the new activities added as part of LAMS 2.2\n\nv20081411','Lesson 3 - LAMS Activities',40,NULL,86,1,0,NULL,5,NULL,NULL,NULL,1,'2009-05-21 17:38:09','2.1.0.200811141019',NULL,5,NULL,1,NULL,'2009-05-21 17:38:09','4028efbb1935b8d301193606f5000051',0,NULL,1),(3,NULL,'Second lesson in the LAMS101 course.\nDescribes each environment of the LAMS system: Learning, Authoring, Monitoring and System Administration. This lesson also demonstrates how LAMS can replicate a \'real-world\' educational structure.','Lesson 2 - LAMS Environments',70,NULL,53,1,0,NULL,5,NULL,NULL,NULL,1,'2009-05-21 17:38:15','2.0.100.200803121637',NULL,5,NULL,1,NULL,'2009-05-21 17:38:15','4028efbb18edfbb70118ee6bacc700d2',0,NULL,1),(4,NULL,'Lesson 1 in the LAMS101 Course.\n\nDescribes what LAMS is, and demonstrates effective use of the Learning and Monitoring environments.','Lesson 1 - What Is LAMS',84,NULL,27,1,0,NULL,5,NULL,NULL,NULL,1,'2009-05-21 17:38:20','2.0.100.200803121637',NULL,5,NULL,1,NULL,'2009-05-21 17:38:20','4028efbb18edfbb70118ee3b3b6d00b8',0,NULL,1),(5,NULL,'Lesson 4 in the LAMS 101 course demonstrates the new features added to the LAMS 2.3 release.','Lesson 4 - Whats New In 2.3',96,NULL,106,1,1,NULL,5,NULL,NULL,NULL,2,'2009-05-21 17:38:28','2.2.0.200905180215',1,22,NULL,1,NULL,'2009-05-21 17:38:28','4028efbb1935b8d301193606f5000051',0,NULL,1),(6,NULL,'Final lesson in the LAMS101 course. Discusses all of the tools available in LAMS and gives demonstrations of each in action.This is a new version of this sequence, which discusses the new activities added as part of LAMS 2.2\n\nv20081411','Lesson 3 - LAMS Activities',104,NULL,86,1,1,NULL,5,NULL,NULL,NULL,2,'2009-05-21 17:39:12','2.1.0.200811141019',2,22,NULL,1,NULL,'2009-05-21 17:39:12','4028efbb1935b8d301193606f5000051',0,NULL,1),(7,NULL,'Second lesson in the LAMS101 course.\nDescribes each environment of the LAMS system: Learning, Authoring, Monitoring and System Administration. This lesson also demonstrates how LAMS can replicate a \'real-world\' educational structure.','Lesson 2 - LAMS Environments',131,NULL,53,1,1,NULL,5,NULL,NULL,NULL,2,'2009-05-21 17:39:20','2.0.100.200803121637',3,22,NULL,1,NULL,'2009-05-21 17:39:20','4028efbb18edfbb70118ee6bacc700d2',0,NULL,1),(8,NULL,'Lesson 1 in the LAMS101 Course.\n\nDescribes what LAMS is, and demonstrates effective use of the Learning and Monitoring environments.','Lesson 1 - What Is LAMS',145,NULL,27,1,1,NULL,5,NULL,NULL,NULL,2,'2009-05-21 17:39:28','2.0.100.200803121637',4,22,NULL,1,NULL,'2009-05-21 17:39:28','4028efbb18edfbb70118ee3b3b6d00b8',0,NULL,1); /*!40000 ALTER TABLE `lams_learning_design` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_learning_library` -- DROP TABLE IF EXISTS `lams_learning_library`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_learning_library` ( `learning_library_id` bigint(20) NOT NULL auto_increment, `description` text, `title` varchar(255) default NULL, `valid_flag` tinyint(1) NOT NULL default '1', `create_date_time` datetime NOT NULL, PRIMARY KEY (`learning_library_id`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_learning_library` -- LOCK TABLES `lams_learning_library` WRITE; /*!40000 ALTER TABLE `lams_learning_library` DISABLE KEYS */; INSERT INTO `lams_learning_library` VALUES (1,'Forum, also known Message Board','Forum',1,'2009-05-21 17:32:48'),(2,'Displays a Noticeboard','Noticeboard',1,'2009-05-21 17:32:53'),(3,'Question and Answer Learning Library Description','Question and Answer',1,'2009-05-21 17:32:58'),(4,'Uploading of files by learners, for review by teachers.','Submit file',1,'2009-05-21 17:33:02'),(5,'Chat Tool','Chat',1,'2009-05-21 17:33:09'),(6,'Share resources','Share resources',1,'2009-05-21 17:33:16'),(7,'Voting Learning Library Description','Voting',1,'2009-05-21 17:33:20'),(8,'Notebook Tool','Notebook',1,'2009-05-21 17:33:25'),(9,'Survey','Survey',1,'2009-05-21 17:33:33'),(10,'Scribe Tool','Scribe',0,'2009-05-21 17:33:40'),(11,'Share taskList','Share taskList',1,'2009-05-21 17:33:47'),(12,'Gmap Tool','Gmap',1,'2009-05-21 17:33:53'),(13,'Spreadsheet Tool','Spreadsheet',1,'2009-05-21 17:33:59'),(14,'Collecting data with custom structure.','Data Collection',1,'2009-05-21 17:34:05'),(15,'Wiki Tool','Wiki',1,'2009-05-21 17:34:11'),(16,'Share imageGallery','Share imageGallery',1,'2009-05-21 17:34:19'),(17,'Dimdim Tool','Dimdim',1,'2009-05-21 17:34:24'),(18,'VideoRecorder Tool','VideoRecorder',1,'2009-05-21 17:34:31'),(19,'Mindmap Tool','Mindmap',1,'2009-05-21 17:34:37'),(20,'Assessment','Assessment',1,'2009-05-21 17:34:44'),(21,'Pixlr Tool','Pixlr',1,'2009-05-21 17:34:50'),(22,'MCQ Learning Library Description','MCQ',1,'2009-05-21 17:34:53'),(23,'Shared Resources and Forum','Resources and Forum',1,'2009-05-21 17:34:54'),(24,'Chat and Scribe','Chat and Scribe',1,'2009-05-21 17:34:55'),(25,'Forum and Scribe','Forum and Scribe',1,'2009-05-21 17:34:56'); /*!40000 ALTER TABLE `lams_learning_library` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_learning_transition` -- DROP TABLE IF EXISTS `lams_learning_transition`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_learning_transition` ( `transition_id` bigint(20) NOT NULL auto_increment, `transition_ui_id` int(11) default NULL, `description` text, `title` varchar(255) default NULL, `to_activity_id` bigint(20) NOT NULL, `from_activity_id` bigint(20) NOT NULL, `learning_design_id` bigint(20) NOT NULL default '0', `create_date_time` datetime NOT NULL, `to_ui_id` int(11) default NULL, `from_ui_id` int(11) default NULL, PRIMARY KEY (`transition_id`), UNIQUE KEY `UQ_transition_activities` (`from_activity_id`,`to_activity_id`), KEY `from_activity_id` (`from_activity_id`), KEY `to_activity_id` (`to_activity_id`), KEY `learning_design_id` (`learning_design_id`), CONSTRAINT `FK_learning_transition_3` FOREIGN KEY (`from_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_learning_transition_2` FOREIGN KEY (`to_activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `lddefn_transition_ibfk_1` FOREIGN KEY (`learning_design_id`) REFERENCES `lams_learning_design` (`learning_design_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_learning_transition` -- LOCK TABLES `lams_learning_transition` WRITE; /*!40000 ALTER TABLE `lams_learning_transition` DISABLE KEYS */; INSERT INTO `lams_learning_transition` VALUES (1,102,NULL,NULL,38,35,1,'2009-05-21 17:38:03',101,92),(2,106,NULL,NULL,36,39,1,'2009-05-21 17:38:03',94,104),(3,105,NULL,NULL,39,38,1,'2009-05-21 17:38:03',104,101),(4,100,NULL,NULL,37,36,1,'2009-05-21 17:38:03',97,94),(5,90,NULL,NULL,34,33,1,'2009-05-21 17:38:03',88,4),(6,93,NULL,NULL,35,34,1,'2009-05-21 17:38:03',92,88),(7,91,NULL,NULL,33,32,1,'2009-05-21 17:38:03',4,1),(8,65,NULL,NULL,48,43,2,'2009-05-21 17:38:09',64,6),(9,63,NULL,NULL,56,52,2,'2009-05-21 17:38:09',60,22),(10,82,NULL,NULL,62,60,2,'2009-05-21 17:38:09',69,67),(11,38,NULL,NULL,59,57,2,'2009-05-21 17:38:09',36,32),(12,85,NULL,NULL,63,61,2,'2009-05-21 17:38:09',83,34),(13,75,NULL,NULL,45,49,2,'2009-05-21 17:38:09',40,74),(14,42,NULL,NULL,52,66,2,'2009-05-21 17:38:09',22,14),(15,66,NULL,NULL,44,48,2,'2009-05-21 17:38:09',8,64),(16,33,NULL,NULL,57,54,2,'2009-05-21 17:38:09',32,30),(17,79,NULL,NULL,58,56,2,'2009-05-21 17:38:09',77,60),(18,86,NULL,NULL,64,63,2,'2009-05-21 17:38:09',71,83),(19,31,NULL,NULL,54,68,2,'2009-05-21 17:38:09',30,28),(20,19,NULL,NULL,55,51,2,'2009-05-21 17:38:09',18,16),(21,76,NULL,NULL,49,44,2,'2009-05-21 17:38:09',74,8),(22,5,NULL,NULL,42,41,2,'2009-05-21 17:38:09',4,2),(23,7,NULL,NULL,43,42,2,'2009-05-21 17:38:09',6,4),(24,80,NULL,NULL,60,58,2,'2009-05-21 17:38:09',67,77),(25,29,NULL,NULL,68,65,2,'2009-05-21 17:38:09',28,15),(26,39,NULL,NULL,61,59,2,'2009-05-21 17:38:09',34,36),(27,3,NULL,NULL,41,40,2,'2009-05-21 17:38:09',2,1),(28,17,NULL,NULL,51,47,2,'2009-05-21 17:38:09',16,13),(29,22,NULL,NULL,75,73,3,'2009-05-21 17:38:15',13,20),(30,24,NULL,NULL,78,75,3,'2009-05-21 17:38:15',23,13),(31,53,NULL,NULL,83,80,3,'2009-05-21 17:38:15',50,15),(32,7,NULL,NULL,71,70,3,'2009-05-21 17:38:15',4,1),(33,26,NULL,NULL,74,71,3,'2009-05-21 17:38:15',25,4),(34,11,NULL,NULL,86,85,4,'2009-05-21 17:38:20',10,8),(35,13,NULL,NULL,87,86,4,'2009-05-21 17:38:20',12,10),(36,27,NULL,NULL,85,88,4,'2009-05-21 17:38:20',8,21),(37,23,NULL,NULL,88,84,4,'2009-05-21 17:38:20',21,1),(38,100,NULL,NULL,89,90,5,'2009-05-21 17:38:28',97,94),(39,93,NULL,NULL,91,92,5,'2009-05-21 17:38:28',92,88),(40,105,NULL,NULL,93,94,5,'2009-05-21 17:38:28',104,101),(41,102,NULL,NULL,94,91,5,'2009-05-21 17:38:28',101,92),(42,90,NULL,NULL,92,95,5,'2009-05-21 17:38:28',88,4),(43,91,NULL,NULL,95,96,5,'2009-05-21 17:38:28',4,1),(44,106,NULL,NULL,90,93,5,'2009-05-21 17:38:28',94,104),(45,82,NULL,NULL,97,98,6,'2009-05-21 17:39:13',69,67),(46,66,NULL,NULL,99,100,6,'2009-05-21 17:39:13',8,64),(47,7,NULL,NULL,101,102,6,'2009-05-21 17:39:13',6,4),(48,3,NULL,NULL,103,104,6,'2009-05-21 17:39:13',2,1),(49,42,NULL,NULL,105,106,6,'2009-05-21 17:39:13',22,14),(50,38,NULL,NULL,107,108,6,'2009-05-21 17:39:13',36,32),(51,31,NULL,NULL,109,110,6,'2009-05-21 17:39:13',30,28),(52,80,NULL,NULL,98,111,6,'2009-05-21 17:39:13',67,77),(53,19,NULL,NULL,112,113,6,'2009-05-21 17:39:13',18,16),(54,85,NULL,NULL,114,115,6,'2009-05-21 17:39:13',83,34),(55,17,NULL,NULL,113,116,6,'2009-05-21 17:39:13',16,13),(56,29,NULL,NULL,110,117,6,'2009-05-21 17:39:13',28,15),(57,86,NULL,NULL,118,114,6,'2009-05-21 17:39:13',71,83),(58,65,NULL,NULL,100,101,6,'2009-05-21 17:39:13',64,6),(59,75,NULL,NULL,119,120,6,'2009-05-21 17:39:13',40,74),(60,76,NULL,NULL,120,99,6,'2009-05-21 17:39:13',74,8),(61,79,NULL,NULL,111,121,6,'2009-05-21 17:39:13',77,60),(62,63,NULL,NULL,121,105,6,'2009-05-21 17:39:13',60,22),(63,5,NULL,NULL,102,103,6,'2009-05-21 17:39:13',4,2),(64,39,NULL,NULL,115,107,6,'2009-05-21 17:39:13',34,36),(65,33,NULL,NULL,108,109,6,'2009-05-21 17:39:13',32,30),(66,24,NULL,NULL,127,128,7,'2009-05-21 17:39:20',23,13),(67,26,NULL,NULL,129,130,7,'2009-05-21 17:39:20',25,4),(68,7,NULL,NULL,130,131,7,'2009-05-21 17:39:20',4,1),(69,53,NULL,NULL,132,133,7,'2009-05-21 17:39:20',50,15),(70,22,NULL,NULL,128,134,7,'2009-05-21 17:39:20',13,20),(71,13,NULL,NULL,141,142,8,'2009-05-21 17:39:28',12,10),(72,27,NULL,NULL,143,144,8,'2009-05-21 17:39:28',8,21),(73,11,NULL,NULL,142,143,8,'2009-05-21 17:39:28',10,8),(74,23,NULL,NULL,144,145,8,'2009-05-21 17:39:28',21,1); /*!40000 ALTER TABLE `lams_learning_transition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_lesson` -- DROP TABLE IF EXISTS `lams_lesson`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_lesson` ( `lesson_id` bigint(20) NOT NULL auto_increment, `learning_design_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(255) NOT NULL, `description` text, `create_date_time` datetime NOT NULL, `organisation_id` bigint(20) default NULL, `class_grouping_id` bigint(20) default NULL, `lesson_state_id` int(3) NOT NULL, `start_date_time` datetime default NULL, `schedule_start_date_time` datetime default NULL, `end_date_time` datetime default NULL, `schedule_end_date_time` datetime default NULL, `previous_state_id` int(3) default NULL, `learner_exportport_avail` tinyint(1) default '1', `learner_presence_avail` tinyint(1) default '0', `learner_im_avail` tinyint(1) default '0', `live_edit_enabled` tinyint(1) default '0', `locked_for_edit` tinyint(4) default '0', `marks_released` tinyint(4) default '0', `version` int(11) default '1', PRIMARY KEY (`lesson_id`), KEY `learning_design_id` (`learning_design_id`), KEY `user_id` (`user_id`), KEY `organisation_id` (`organisation_id`), KEY `lesson_state_id` (`lesson_state_id`), KEY `class_grouping_id` (`class_grouping_id`), CONSTRAINT `FK_lams_lesson_1_1` FOREIGN KEY (`learning_design_id`) REFERENCES `lams_learning_design` (`learning_design_id`), CONSTRAINT `FK_lams_lesson_2` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`), CONSTRAINT `FK_lams_lesson_3` FOREIGN KEY (`organisation_id`) REFERENCES `lams_organisation` (`organisation_id`), CONSTRAINT `FK_lams_lesson_4` FOREIGN KEY (`lesson_state_id`) REFERENCES `lams_lesson_state` (`lesson_state_id`), CONSTRAINT `FK_lams_lesson_5` FOREIGN KEY (`class_grouping_id`) REFERENCES `lams_grouping` (`grouping_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_lesson` -- LOCK TABLES `lams_lesson` WRITE; /*!40000 ALTER TABLE `lams_lesson` DISABLE KEYS */; INSERT INTO `lams_lesson` VALUES (1,5,5,'Lesson 4 - Whats New In 2.3','Lesson 4 in the LAMS 101 course demonstrates the new features added to the LAMS 2.3 release.','2009-05-21 17:38:28',3,1,3,'2009-05-21 17:38:28',NULL,NULL,NULL,NULL,1,0,0,1,0,0,2),(2,6,5,'Lesson 3 - LAMS Activities','Final lesson in the LAMS101 course. Discusses all of the tools available in LAMS and gives demonstrations of each in action.This is a new version of this sequence, which discusses the new activities added as part of LAMS 2.2v20081411','2009-05-21 17:39:13',3,2,3,'2009-05-21 17:39:13',NULL,NULL,NULL,NULL,1,0,0,1,0,0,2),(3,7,5,'Lesson 2 - LAMS Environments','Second lesson in the LAMS101 course.Describes each environment of the LAMS system: Learning, Authoring, Monitoring and System Administration. This lesson also demonstrates how LAMS can replicate a \'real-world\' educational structure.','2009-05-21 17:39:20',3,3,3,'2009-05-21 17:39:20',NULL,NULL,NULL,NULL,1,0,0,1,0,0,2),(4,8,5,'Lesson 1 - What Is LAMS','Lesson 1 in the LAMS101 Course.Describes what LAMS is, and demonstrates effective use of the Learning and Monitoring environments.','2009-05-21 17:39:28',3,4,3,'2009-05-21 17:39:29',NULL,NULL,NULL,NULL,1,0,0,1,0,0,2); /*!40000 ALTER TABLE `lams_lesson` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_lesson_learner` -- DROP TABLE IF EXISTS `lams_lesson_learner`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_lesson_learner` ( `lesson_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, KEY `lesson_id` (`lesson_id`), KEY `user_id` (`user_id`), CONSTRAINT `FK_lams_lesson_learner_1` FOREIGN KEY (`lesson_id`) REFERENCES `lams_lesson` (`lesson_id`), CONSTRAINT `FK_lams_lesson_learner_2` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_lesson_learner` -- LOCK TABLES `lams_lesson_learner` WRITE; /*!40000 ALTER TABLE `lams_lesson_learner` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_lesson_learner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_lesson_state` -- DROP TABLE IF EXISTS `lams_lesson_state`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_lesson_state` ( `lesson_state_id` int(3) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`lesson_state_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_lesson_state` -- LOCK TABLES `lams_lesson_state` WRITE; /*!40000 ALTER TABLE `lams_lesson_state` DISABLE KEYS */; INSERT INTO `lams_lesson_state` VALUES (1,'CREATED'),(2,'NOT_STARTED'),(3,'STARTED'),(4,'SUSPENDED'),(5,'FINISHED'),(6,'ARCHIVED'),(7,'REMOVED'); /*!40000 ALTER TABLE `lams_lesson_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_license` -- DROP TABLE IF EXISTS `lams_license`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_license` ( `license_id` bigint(20) NOT NULL, `name` varchar(200) NOT NULL, `code` varchar(20) NOT NULL, `url` varchar(256) default NULL, `default_flag` tinyint(1) NOT NULL default '0', `picture_url` varchar(256) default NULL, PRIMARY KEY (`license_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_license` -- LOCK TABLES `lams_license` WRITE; /*!40000 ALTER TABLE `lams_license` DISABLE KEYS */; INSERT INTO `lams_license` VALUES (1,'LAMS Recommended: CC Attribution-Noncommercial-ShareAlike 2.5','by-nc-sa','http://creativecommons.org/licenses/by-nc-sa/2.5/',1,'/images/license/byncsa.jpg'),(2,'CC Attribution-No Derivatives 2.5','by-nd','http://creativecommons.org/licenses/by-nd/2.5/',0,'/images/license/bynd.jpg'),(3,'CC Attribution-Noncommercial-No Derivatives 2.5','by-nc-nd','http://creativecommons.org/licenses/by-nc-nd/2.5/',0,'/images/license/byncnd.jpg'),(4,'CC Attribution-Noncommercial 2.5','by-nc','http://creativecommons.org/licenses/by-nc/2.5/',0,'/images/license/bync.jpg'),(5,'CC Attribution-ShareAlike 2.5','by-sa','http://creativecommons.org/licenses/by-sa/2.5/',0,'/images/license/byncsa.jpg'),(6,'Other Licensing Agreement','other','',0,''); /*!40000 ALTER TABLE `lams_license` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_log_event` -- DROP TABLE IF EXISTS `lams_log_event`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_log_event` ( `log_event_id` bigint(20) NOT NULL auto_increment, `log_event_type_id` int(5) NOT NULL, `user_id` bigint(20) default NULL, `timestamp` datetime NOT NULL, `ref_id` bigint(20) default NULL, `message` varchar(255) default NULL, PRIMARY KEY (`log_event_id`), KEY `log_event_type_id` (`log_event_type_id`), CONSTRAINT `FK_lams_event_log_1` FOREIGN KEY (`log_event_type_id`) REFERENCES `lams_log_event_type` (`log_event_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_log_event` -- LOCK TABLES `lams_log_event` WRITE; /*!40000 ALTER TABLE `lams_log_event` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_log_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_log_event_type` -- DROP TABLE IF EXISTS `lams_log_event_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_log_event_type` ( `log_event_type_id` int(5) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`log_event_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_log_event_type` -- LOCK TABLES `lams_log_event_type` WRITE; /*!40000 ALTER TABLE `lams_log_event_type` DISABLE KEYS */; INSERT INTO `lams_log_event_type` VALUES (1,'LEARNER_LESSON_START'),(2,'LEARNER_LESSON_FINISH'),(3,'LEARNER_LESSON_EXIT'),(4,'LEARNER_LESSON_RESUME'),(5,'LEARNER_ACTIVITY_START'),(6,'LEARNER_ACTIVITY_FINISH'); /*!40000 ALTER TABLE `lams_log_event_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_notebook_entry` -- DROP TABLE IF EXISTS `lams_notebook_entry`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_notebook_entry` ( `uid` bigint(20) NOT NULL auto_increment, `external_id` bigint(20) default NULL, `external_id_type` int(11) default NULL, `external_signature` varchar(255) default NULL, `user_id` int(11) default NULL, `title` varchar(255) default NULL, `entry` text, `create_date` datetime default NULL, `last_modified` datetime default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_notebook_entry` -- LOCK TABLES `lams_notebook_entry` WRITE; /*!40000 ALTER TABLE `lams_notebook_entry` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_notebook_entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_organisation` -- DROP TABLE IF EXISTS `lams_organisation`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_organisation` ( `organisation_id` bigint(20) NOT NULL auto_increment, `name` varchar(250) NOT NULL, `code` varchar(20) default NULL, `description` varchar(250) default NULL, `parent_organisation_id` bigint(20) default NULL, `organisation_type_id` int(3) NOT NULL default '0', `create_date` datetime NOT NULL, `created_by` bigint(20) NOT NULL, `workspace_id` bigint(20) default NULL, `organisation_state_id` int(3) NOT NULL, `admin_add_new_users` tinyint(1) NOT NULL default '0', `admin_browse_all_users` tinyint(1) NOT NULL default '0', `admin_change_status` tinyint(1) NOT NULL default '0', `admin_create_guest` tinyint(1) NOT NULL default '0', `enable_monitor_gradebook` tinyint(1) NOT NULL default '0', `enable_learner_gradebook` tinyint(1) NOT NULL default '0', `locale_id` int(11) default NULL, `archived_date` datetime default NULL, `ordered_lesson_ids` text, PRIMARY KEY (`organisation_id`), KEY `organisation_type_id` (`organisation_type_id`), KEY `workspace_id` (`workspace_id`), KEY `parent_organisation_id` (`parent_organisation_id`), KEY `organisation_state_id` (`organisation_state_id`), KEY `locale_id` (`locale_id`), CONSTRAINT `FK_lams_organisation_1` FOREIGN KEY (`organisation_type_id`) REFERENCES `lams_organisation_type` (`organisation_type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_organisation_2` FOREIGN KEY (`workspace_id`) REFERENCES `lams_workspace` (`workspace_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_organisation_3` FOREIGN KEY (`parent_organisation_id`) REFERENCES `lams_organisation` (`organisation_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_organisation_4` FOREIGN KEY (`organisation_state_id`) REFERENCES `lams_organisation_state` (`organisation_state_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_organisation_5` FOREIGN KEY (`locale_id`) REFERENCES `lams_supported_locale` (`locale_id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_organisation` -- LOCK TABLES `lams_organisation` WRITE; /*!40000 ALTER TABLE `lams_organisation` DISABLE KEYS */; INSERT INTO `lams_organisation` VALUES (1,'Root',NULL,'Root Organisation',NULL,1,'2009-05-21 17:32:34',1,1,1,0,0,0,0,0,0,1,NULL,NULL),(2,'Playpen','PP101','Developers Playpen',1,2,'2009-05-21 17:32:34',1,2,1,0,0,0,0,0,0,1,NULL,NULL),(3,'Everybody',NULL,'All People In Course',2,3,'2009-05-21 17:32:34',1,NULL,1,0,0,0,0,0,0,1,NULL,NULL),(4,'Mathematics 1','MATH111','Mathematics 1',1,2,'2009-05-21 17:32:34',1,3,1,0,0,0,0,0,0,2,NULL,NULL),(5,'Tutorial Group A','TUTA','Tutorial Group A',4,3,'2009-05-21 17:32:34',1,NULL,1,0,0,0,0,0,0,2,NULL,NULL),(6,'Tutorial Group B','TUTB','Tutorial Group B',4,3,'2009-05-21 17:32:34',1,NULL,1,0,0,0,0,0,0,2,NULL,NULL),(7,'Moodle','Moodle','Moodle Test',1,2,'2009-05-21 17:32:34',1,50,2,0,0,0,0,0,0,1,NULL,NULL); /*!40000 ALTER TABLE `lams_organisation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_organisation_state` -- DROP TABLE IF EXISTS `lams_organisation_state`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_organisation_state` ( `organisation_state_id` int(3) NOT NULL, `description` varchar(255) default NULL, PRIMARY KEY (`organisation_state_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_organisation_state` -- LOCK TABLES `lams_organisation_state` WRITE; /*!40000 ALTER TABLE `lams_organisation_state` DISABLE KEYS */; INSERT INTO `lams_organisation_state` VALUES (1,'ACTIVE'),(2,'HIDDEN'),(3,'ARCHIVED'),(4,'REMOVED'); /*!40000 ALTER TABLE `lams_organisation_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_organisation_type` -- DROP TABLE IF EXISTS `lams_organisation_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_organisation_type` ( `organisation_type_id` int(3) NOT NULL, `name` varchar(64) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`organisation_type_id`), UNIQUE KEY `UQ_lams_organisation_type_name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_organisation_type` -- LOCK TABLES `lams_organisation_type` WRITE; /*!40000 ALTER TABLE `lams_organisation_type` DISABLE KEYS */; INSERT INTO `lams_organisation_type` VALUES (1,'ROOT ORGANISATION','root all other organisations: controlled by Sysadmin'),(2,'COURSE ORGANISATION','main organisation level - equivalent to an entire course.'),(3,'CLASS','runtime organisation level - lessons are run for classes.'); /*!40000 ALTER TABLE `lams_organisation_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_password_request` -- DROP TABLE IF EXISTS `lams_password_request`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_password_request` ( `request_id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `request_key` varchar(32) NOT NULL, `request_date` datetime NOT NULL, PRIMARY KEY (`request_id`), UNIQUE KEY `IX_lams_psswd_rqst_key` (`request_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_password_request` -- LOCK TABLES `lams_password_request` WRITE; /*!40000 ALTER TABLE `lams_password_request` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_password_request` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_planner_nodes` -- DROP TABLE IF EXISTS `lams_planner_nodes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_planner_nodes` ( `uid` bigint(20) NOT NULL auto_increment, `parent_uid` bigint(20) default NULL, `order_id` tinyint(3) unsigned NOT NULL, `locked` tinyint(1) NOT NULL default '0', `content_folder_id` varchar(32) default NULL, `title` varchar(255) NOT NULL, `brief_desc` text, `full_desc` text, `file_uuid` bigint(20) unsigned default NULL, `file_name` varchar(255) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `parent_uid` (`parent_uid`,`order_id`), CONSTRAINT `FK_lams_planner_node_parent` FOREIGN KEY (`parent_uid`) REFERENCES `lams_planner_nodes` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_planner_nodes` -- LOCK TABLES `lams_planner_nodes` WRITE; /*!40000 ALTER TABLE `lams_planner_nodes` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_planner_nodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_presence_chat_msgs` -- DROP TABLE IF EXISTS `lams_presence_chat_msgs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_presence_chat_msgs` ( `uid` bigint(20) NOT NULL auto_increment, `room_name` varchar(255) default NULL, `from_user` varchar(255) default NULL, `to_user` varchar(255) default NULL, `date_sent` datetime default NULL, `message` varchar(1023) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_presence_chat_msgs` -- LOCK TABLES `lams_presence_chat_msgs` WRITE; /*!40000 ALTER TABLE `lams_presence_chat_msgs` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_presence_chat_msgs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_privilege` -- DROP TABLE IF EXISTS `lams_privilege`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_privilege` ( `privilege_id` bigint(20) NOT NULL auto_increment, `code` varchar(10) NOT NULL, `description` varchar(255) default NULL, PRIMARY KEY (`privilege_id`), UNIQUE KEY `IX_lams_privilege_code` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_privilege` -- LOCK TABLES `lams_privilege` WRITE; /*!40000 ALTER TABLE `lams_privilege` DISABLE KEYS */; INSERT INTO `lams_privilege` VALUES (1,'Z','do anything'),(2,'A','add/remove/modify classes within the course'),(3,'B','create running instances of sequences and assign those to a class'),(4,'C','stop/start running sequences'),(5,'D','monitor the progress of learners'),(6,'E','participates in sequences'),(7,'F','export their progress on each running sequence'),(8,'G','write/create/delete permissions in course content folder'),(9,'H','read course content folder'),(10,'I','create new users'),(11,'J','create guest users'),(12,'K','change status of course'),(13,'L','browse all users in the system'),(14,'M','write/create/delete permissions in all course content folders'); /*!40000 ALTER TABLE `lams_privilege` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_progress_attempted` -- DROP TABLE IF EXISTS `lams_progress_attempted`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_progress_attempted` ( `learner_progress_id` bigint(20) NOT NULL, `activity_id` bigint(20) NOT NULL, `start_date_time` datetime default NULL, PRIMARY KEY (`learner_progress_id`,`activity_id`), KEY `learner_progress_id` (`learner_progress_id`), KEY `activity_id` (`activity_id`), CONSTRAINT `FK_lams_progress_current_1` FOREIGN KEY (`learner_progress_id`) REFERENCES `lams_learner_progress` (`learner_progress_id`), CONSTRAINT `FK_lams_progress_current_2` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_progress_attempted` -- LOCK TABLES `lams_progress_attempted` WRITE; /*!40000 ALTER TABLE `lams_progress_attempted` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_progress_attempted` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_progress_completed` -- DROP TABLE IF EXISTS `lams_progress_completed`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_progress_completed` ( `learner_progress_id` bigint(20) NOT NULL, `activity_id` bigint(20) NOT NULL, `completed_date_time` datetime default NULL, `start_date_time` datetime default NULL, PRIMARY KEY (`learner_progress_id`,`activity_id`), KEY `learner_progress_id` (`learner_progress_id`), KEY `activity_id` (`activity_id`), CONSTRAINT `FK_lams_progress_completed_1` FOREIGN KEY (`learner_progress_id`) REFERENCES `lams_learner_progress` (`learner_progress_id`), CONSTRAINT `FK_lams_progress_completed_2` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_progress_completed` -- LOCK TABLES `lams_progress_completed` WRITE; /*!40000 ALTER TABLE `lams_progress_completed` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_progress_completed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_BLOB_TRIGGERS` -- DROP TABLE IF EXISTS `lams_qtz_BLOB_TRIGGERS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_BLOB_TRIGGERS` ( `TRIGGER_NAME` varchar(80) NOT NULL, `TRIGGER_GROUP` varchar(80) NOT NULL, `BLOB_DATA` blob, PRIMARY KEY (`TRIGGER_NAME`,`TRIGGER_GROUP`), CONSTRAINT `lams_qtz_BLOB_TRIGGERS_ibfk_1` FOREIGN KEY (`TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `lams_qtz_TRIGGERS` (`TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_BLOB_TRIGGERS` -- LOCK TABLES `lams_qtz_BLOB_TRIGGERS` WRITE; /*!40000 ALTER TABLE `lams_qtz_BLOB_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_BLOB_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_CALENDARS` -- DROP TABLE IF EXISTS `lams_qtz_CALENDARS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_CALENDARS` ( `CALENDAR_NAME` varchar(80) NOT NULL, `CALENDAR` blob NOT NULL, PRIMARY KEY (`CALENDAR_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_CALENDARS` -- LOCK TABLES `lams_qtz_CALENDARS` WRITE; /*!40000 ALTER TABLE `lams_qtz_CALENDARS` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_CALENDARS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_CRON_TRIGGERS` -- DROP TABLE IF EXISTS `lams_qtz_CRON_TRIGGERS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_CRON_TRIGGERS` ( `TRIGGER_NAME` varchar(80) NOT NULL, `TRIGGER_GROUP` varchar(80) NOT NULL, `CRON_EXPRESSION` varchar(80) NOT NULL, `TIME_ZONE_ID` varchar(80) default NULL, PRIMARY KEY (`TRIGGER_NAME`,`TRIGGER_GROUP`), CONSTRAINT `lams_qtz_CRON_TRIGGERS_ibfk_1` FOREIGN KEY (`TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `lams_qtz_TRIGGERS` (`TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_CRON_TRIGGERS` -- LOCK TABLES `lams_qtz_CRON_TRIGGERS` WRITE; /*!40000 ALTER TABLE `lams_qtz_CRON_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_CRON_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_FIRED_TRIGGERS` -- DROP TABLE IF EXISTS `lams_qtz_FIRED_TRIGGERS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_FIRED_TRIGGERS` ( `ENTRY_ID` varchar(95) NOT NULL, `TRIGGER_NAME` varchar(80) NOT NULL, `TRIGGER_GROUP` varchar(80) NOT NULL, `IS_VOLATILE` varchar(1) NOT NULL, `INSTANCE_NAME` varchar(80) NOT NULL, `FIRED_TIME` bigint(13) NOT NULL, `STATE` varchar(16) NOT NULL, `JOB_NAME` varchar(80) default NULL, `JOB_GROUP` varchar(80) default NULL, `IS_STATEFUL` varchar(1) default NULL, `REQUESTS_RECOVERY` varchar(1) default NULL, PRIMARY KEY (`ENTRY_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_FIRED_TRIGGERS` -- LOCK TABLES `lams_qtz_FIRED_TRIGGERS` WRITE; /*!40000 ALTER TABLE `lams_qtz_FIRED_TRIGGERS` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_FIRED_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_JOB_DETAILS` -- DROP TABLE IF EXISTS `lams_qtz_JOB_DETAILS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_JOB_DETAILS` ( `JOB_NAME` varchar(80) NOT NULL, `JOB_GROUP` varchar(80) NOT NULL, `DESCRIPTION` varchar(120) default NULL, `JOB_CLASS_NAME` varchar(128) NOT NULL, `IS_DURABLE` varchar(1) NOT NULL, `IS_VOLATILE` varchar(1) NOT NULL, `IS_STATEFUL` varchar(1) NOT NULL, `REQUESTS_RECOVERY` varchar(1) NOT NULL, `JOB_DATA` blob, PRIMARY KEY (`JOB_NAME`,`JOB_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_JOB_DETAILS` -- LOCK TABLES `lams_qtz_JOB_DETAILS` WRITE; /*!40000 ALTER TABLE `lams_qtz_JOB_DETAILS` DISABLE KEYS */; INSERT INTO `lams_qtz_JOB_DETAILS` VALUES ('Resend Messages Job','DEFAULT','','org.lamsfoundation.lams.events.ResendMessagesJob','0','0','0','0',0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB0200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787000737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C770800000010000000007800); /*!40000 ALTER TABLE `lams_qtz_JOB_DETAILS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_JOB_LISTENERS` -- DROP TABLE IF EXISTS `lams_qtz_JOB_LISTENERS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_JOB_LISTENERS` ( `JOB_NAME` varchar(80) NOT NULL, `JOB_GROUP` varchar(80) NOT NULL, `JOB_LISTENER` varchar(80) NOT NULL, PRIMARY KEY (`JOB_NAME`,`JOB_GROUP`,`JOB_LISTENER`), CONSTRAINT `lams_qtz_JOB_LISTENERS_ibfk_1` FOREIGN KEY (`JOB_NAME`, `JOB_GROUP`) REFERENCES `lams_qtz_JOB_DETAILS` (`JOB_NAME`, `JOB_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_JOB_LISTENERS` -- LOCK TABLES `lams_qtz_JOB_LISTENERS` WRITE; /*!40000 ALTER TABLE `lams_qtz_JOB_LISTENERS` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_JOB_LISTENERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_LOCKS` -- DROP TABLE IF EXISTS `lams_qtz_LOCKS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_LOCKS` ( `LOCK_NAME` varchar(40) NOT NULL, PRIMARY KEY (`LOCK_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_LOCKS` -- LOCK TABLES `lams_qtz_LOCKS` WRITE; /*!40000 ALTER TABLE `lams_qtz_LOCKS` DISABLE KEYS */; INSERT INTO `lams_qtz_LOCKS` VALUES ('CALENDAR_ACCESS'),('JOB_ACCESS'),('MISFIRE_ACCESS'),('STATE_ACCESS'),('TRIGGER_ACCESS'); /*!40000 ALTER TABLE `lams_qtz_LOCKS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_PAUSED_TRIGGER_GRPS` -- DROP TABLE IF EXISTS `lams_qtz_PAUSED_TRIGGER_GRPS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_PAUSED_TRIGGER_GRPS` ( `TRIGGER_GROUP` varchar(80) NOT NULL, PRIMARY KEY (`TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_PAUSED_TRIGGER_GRPS` -- LOCK TABLES `lams_qtz_PAUSED_TRIGGER_GRPS` WRITE; /*!40000 ALTER TABLE `lams_qtz_PAUSED_TRIGGER_GRPS` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_PAUSED_TRIGGER_GRPS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_SCHEDULER_STATE` -- DROP TABLE IF EXISTS `lams_qtz_SCHEDULER_STATE`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_SCHEDULER_STATE` ( `INSTANCE_NAME` varchar(80) NOT NULL, `LAST_CHECKIN_TIME` bigint(13) NOT NULL, `CHECKIN_INTERVAL` bigint(13) NOT NULL, `RECOVERER` varchar(80) default NULL, PRIMARY KEY (`INSTANCE_NAME`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_SCHEDULER_STATE` -- LOCK TABLES `lams_qtz_SCHEDULER_STATE` WRITE; /*!40000 ALTER TABLE `lams_qtz_SCHEDULER_STATE` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_SCHEDULER_STATE` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_SIMPLE_TRIGGERS` -- DROP TABLE IF EXISTS `lams_qtz_SIMPLE_TRIGGERS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_SIMPLE_TRIGGERS` ( `TRIGGER_NAME` varchar(80) NOT NULL, `TRIGGER_GROUP` varchar(80) NOT NULL, `REPEAT_COUNT` bigint(7) NOT NULL, `REPEAT_INTERVAL` bigint(12) NOT NULL, `TIMES_TRIGGERED` bigint(7) NOT NULL, PRIMARY KEY (`TRIGGER_NAME`,`TRIGGER_GROUP`), CONSTRAINT `lams_qtz_SIMPLE_TRIGGERS_ibfk_1` FOREIGN KEY (`TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `lams_qtz_TRIGGERS` (`TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_SIMPLE_TRIGGERS` -- LOCK TABLES `lams_qtz_SIMPLE_TRIGGERS` WRITE; /*!40000 ALTER TABLE `lams_qtz_SIMPLE_TRIGGERS` DISABLE KEYS */; INSERT INTO `lams_qtz_SIMPLE_TRIGGERS` VALUES ('Resend Messages Job trigger','DEFAULT',-1,3600000,1); /*!40000 ALTER TABLE `lams_qtz_SIMPLE_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_TRIGGERS` -- DROP TABLE IF EXISTS `lams_qtz_TRIGGERS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_TRIGGERS` ( `TRIGGER_NAME` varchar(80) NOT NULL, `TRIGGER_GROUP` varchar(80) NOT NULL, `JOB_NAME` varchar(80) NOT NULL, `JOB_GROUP` varchar(80) NOT NULL, `IS_VOLATILE` varchar(1) NOT NULL, `DESCRIPTION` varchar(120) default NULL, `NEXT_FIRE_TIME` bigint(13) default NULL, `PREV_FIRE_TIME` bigint(13) default NULL, `TRIGGER_STATE` varchar(16) NOT NULL, `TRIGGER_TYPE` varchar(8) NOT NULL, `START_TIME` bigint(13) NOT NULL, `END_TIME` bigint(13) default NULL, `CALENDAR_NAME` varchar(80) default NULL, `MISFIRE_INSTR` smallint(2) default NULL, `JOB_DATA` blob, PRIMARY KEY (`TRIGGER_NAME`,`TRIGGER_GROUP`), KEY `JOB_NAME` (`JOB_NAME`,`JOB_GROUP`), CONSTRAINT `lams_qtz_TRIGGERS_ibfk_1` FOREIGN KEY (`JOB_NAME`, `JOB_GROUP`) REFERENCES `lams_qtz_JOB_DETAILS` (`JOB_NAME`, `JOB_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_TRIGGERS` -- LOCK TABLES `lams_qtz_TRIGGERS` WRITE; /*!40000 ALTER TABLE `lams_qtz_TRIGGERS` DISABLE KEYS */; INSERT INTO `lams_qtz_TRIGGERS` VALUES ('Resend Messages Job trigger','DEFAULT','Resend Messages Job','DEFAULT','0',NULL,1242894943474,1242891343474,'WAITING','SIMPLE',1242891343474,0,NULL,0,NULL); /*!40000 ALTER TABLE `lams_qtz_TRIGGERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_qtz_TRIGGER_LISTENERS` -- DROP TABLE IF EXISTS `lams_qtz_TRIGGER_LISTENERS`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_qtz_TRIGGER_LISTENERS` ( `TRIGGER_NAME` varchar(80) NOT NULL, `TRIGGER_GROUP` varchar(80) NOT NULL, `TRIGGER_LISTENER` varchar(80) NOT NULL, PRIMARY KEY (`TRIGGER_NAME`,`TRIGGER_GROUP`,`TRIGGER_LISTENER`), CONSTRAINT `lams_qtz_TRIGGER_LISTENERS_ibfk_1` FOREIGN KEY (`TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `lams_qtz_TRIGGERS` (`TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_qtz_TRIGGER_LISTENERS` -- LOCK TABLES `lams_qtz_TRIGGER_LISTENERS` WRITE; /*!40000 ALTER TABLE `lams_qtz_TRIGGER_LISTENERS` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_qtz_TRIGGER_LISTENERS` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_registration` -- DROP TABLE IF EXISTS `lams_registration`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_registration` ( `uid` bigint(20) NOT NULL auto_increment, `site_name` varchar(255) NOT NULL, `organisation` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `server_country` varchar(2) NOT NULL, `public_directory` tinyint(1) default '1', `enable_lams_community` tinyint(1) default '0', `server_key` varchar(255) NOT NULL, `server_id` varchar(255) NOT NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_registration` -- LOCK TABLES `lams_registration` WRITE; /*!40000 ALTER TABLE `lams_registration` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_registration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_role` -- DROP TABLE IF EXISTS `lams_role`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_role` ( `role_id` int(6) NOT NULL default '0', `name` varchar(64) NOT NULL, `description` text, `create_date` datetime NOT NULL, PRIMARY KEY (`role_id`), KEY `gname` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_role` -- LOCK TABLES `lams_role` WRITE; /*!40000 ALTER TABLE `lams_role` DISABLE KEYS */; INSERT INTO `lams_role` VALUES (1,'SYSADMIN','LAMS System Adminstrator','2009-05-21 17:32:34'),(2,'GROUP MANAGER','Group Manager','2009-05-21 17:32:34'),(3,'AUTHOR','Authors Learning Designs','2009-05-21 17:32:34'),(4,'MONITOR','Member of Staff','2009-05-21 17:32:34'),(5,'LEARNER','Student','2009-05-21 17:32:34'),(6,'GROUP ADMIN','Group Administrator','2009-05-21 17:32:34'),(7,'AUTHOR ADMIN','Author Administrator','2009-05-21 17:32:34'); /*!40000 ALTER TABLE `lams_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_role_privilege` -- DROP TABLE IF EXISTS `lams_role_privilege`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_role_privilege` ( `rp_id` bigint(20) NOT NULL auto_increment, `role_id` int(6) NOT NULL, `privilege_id` bigint(20) NOT NULL, PRIMARY KEY (`rp_id`), KEY `privilege_id` (`privilege_id`), KEY `role_id` (`role_id`), CONSTRAINT `FK_lams_role_privilege_1` FOREIGN KEY (`privilege_id`) REFERENCES `lams_privilege` (`privilege_id`), CONSTRAINT `FK_lams_role_privilege_2` FOREIGN KEY (`role_id`) REFERENCES `lams_role` (`role_id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_role_privilege` -- LOCK TABLES `lams_role_privilege` WRITE; /*!40000 ALTER TABLE `lams_role_privilege` DISABLE KEYS */; INSERT INTO `lams_role_privilege` VALUES (1,1,1),(2,2,2),(3,2,3),(4,2,4),(5,2,5),(6,2,8),(7,2,9),(8,2,10),(9,2,12),(10,2,13),(11,3,8),(12,3,9),(13,4,3),(14,4,4),(15,4,5),(16,5,6),(17,5,7),(18,6,2),(19,6,10),(20,6,12),(21,6,13),(22,7,14); /*!40000 ALTER TABLE `lams_role_privilege` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_supported_locale` -- DROP TABLE IF EXISTS `lams_supported_locale`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_supported_locale` ( `locale_id` int(11) NOT NULL auto_increment, `language_iso_code` varchar(2) NOT NULL COMMENT 'ISO 639-1 Language Code (2 letter version) Java only supports 2 letter properly, not the 3 letter codes.', `country_iso_code` varchar(2) default NULL COMMENT 'ISO 3166 Country Code. Cannot use in unique key as allows null.', `description` varchar(255) NOT NULL, `direction` varchar(3) NOT NULL, `fckeditor_code` varchar(10) default NULL, PRIMARY KEY (`locale_id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8 COMMENT='Describes the valid language/country combinations.'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_supported_locale` -- LOCK TABLES `lams_supported_locale` WRITE; /*!40000 ALTER TABLE `lams_supported_locale` DISABLE KEYS */; INSERT INTO `lams_supported_locale` VALUES (1,'en','AU','English (Australia)','LTR','en-au'),(2,'es','ES','Español','LTR','es'),(3,'mi','NZ','Māori','LTR','en-au'),(4,'de','DE','Deutsch','LTR','de'),(5,'zh','CN','简体中文','LTR','zh-cn'),(6,'fr','FR','Français','LTR','fr'),(7,'it','IT','Italiano','LTR','it'),(8,'no','NO','Norsk','LTR','no'),(9,'sv','SE','Svenska','LTR','sv'),(10,'ko','KR','한국어','LTR','ko'),(11,'pl','PL','Polski','LTR','pl'),(12,'pt','BR','Português (Brasil)','LTR','pt-br'),(13,'hu','HU','Magyar','LTR','hu'),(14,'bg','BG','Български','LTR','bg'),(15,'cy','GB','Cymraeg (Cymru)','LTR','en-au'),(16,'th','TH','Thai','LTR','th'),(17,'el','GR','Ελληνικά','LTR','el'),(18,'nl','BE','Nederlands (België)','LTR','nl'),(19,'ar','JO','عربي','RTL','ar'),(20,'da','DK','Dansk','LTR','da'),(21,'ru','RU','Русский','LTR','ru'),(22,'vi','VN','Tiếng Việt','LTR','vi'),(23,'zh','TW','Chinese (Taiwan)','LTR','zh'),(24,'ja','JP','日本語','LTR','ja'),(25,'ms','MY','Malay (Malaysia)','LTR','ms'),(26,'tr','TR','Türkçe','LTR','tr'); /*!40000 ALTER TABLE `lams_supported_locale` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_system_tool` -- DROP TABLE IF EXISTS `lams_system_tool`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_system_tool` ( `system_tool_id` bigint(20) NOT NULL auto_increment, `learning_activity_type_id` int(11) NOT NULL, `tool_display_name` varchar(255) NOT NULL, `description` text, `learner_url` text, `learner_preview_url` text COMMENT 'Learner screen for preview a learning design. ', `learner_progress_url` text COMMENT 'Teacher''s view of a learner''s screen.', `export_pfolio_learner_url` text, `export_pfolio_class_url` text, `monitor_url` text, `contribute_url` text, `help_url` text, `create_date_time` datetime NOT NULL, `admin_url` text, `pedagogical_planner_url` text, PRIMARY KEY (`system_tool_id`), UNIQUE KEY `UQ_systool_activity_type` (`learning_activity_type_id`), KEY `learning_activity_type_id` (`learning_activity_type_id`), CONSTRAINT `FK_lams_system_tool` FOREIGN KEY (`learning_activity_type_id`) REFERENCES `lams_learning_activity_type` (`learning_activity_type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_system_tool` -- LOCK TABLES `lams_system_tool` WRITE; /*!40000 ALTER TABLE `lams_system_tool` DISABLE KEYS */; INSERT INTO `lams_system_tool` VALUES (1,2,'Grouping','All types of grouping including random and chosen.','learning/grouping.do?method=performGrouping','learning/grouping.do?method=performGrouping','learning/grouping.do?method=viewGrouping&mode=teacher','learning/groupingExportPortfolio?mode=learner','learning/groupingExportPortfolio?mode=teacher','monitoring/grouping.do?method=startGrouping','monitoring/grouping.do?method=startGrouping',NULL,'2009-05-21 17:32:34',NULL,'pedagogicalPlanner/grouping.do?method=initGrouping'),(2,3,'Sync Gate','Gate: Synchronise Learners.','learning/gate.do?method=knockGate','learning/gate.do?method=knockGate',NULL,NULL,'monitoring/gateExportPortfolio?mode=teacher','monitoring/gate.do?method=viewGate','monitoring/gate.do?method=viewGate',NULL,'2009-05-21 17:32:34',NULL,NULL),(3,4,'Schedule Gate','Gate: Opens/shuts at particular times.','learning/gate.do?method=knockGate','learning/gate.do?method=knockGate',NULL,NULL,'monitoring/gateExportPortfolio?mode=teacher','monitoring/gate.do?method=viewGate','monitoring/gate.do?method=viewGate',NULL,'2009-05-21 17:32:34',NULL,NULL),(4,5,'Permission Gate','Gate: Opens under teacher or staff control.','learning/gate.do?method=knockGate','learning/gate.do?method=knockGate',NULL,NULL,'monitoring/gateExportPortfolio?mode=teacher','monitoring/gate.do?method=viewGate','monitoring/gate.do?method=viewGate',NULL,'2009-05-21 17:32:34',NULL,NULL),(5,9,'System Gate','Gate: Opens under system control.','learning/gate.do?method=knockGate','learning/gate.do?method=knockGate',NULL,NULL,'monitoring/gateExportPortfolio?mode=teacher','monitoring/gate.do?method=viewGate','monitoring/gate.do?method=viewGate',NULL,'2009-05-21 17:32:34',NULL,NULL),(6,10,'Monitor Chosen Branching','Select between multiple sequence activities, with the branch chosen in monitoring.','learning/branching.do?method=performBranching','learning/branching.do?method=performBranching','monitoring/complexProgress.do',NULL,'monitoring/branchingExportPortfolio?mode=teacher','monitoring/chosenBranching.do?method=assignBranch','monitoring/chosenBranching.do?method=assignBranch',NULL,'2009-05-21 17:32:34',NULL,NULL),(7,11,'Group Based Branching','Select between multiple sequence activities, with the branch chosen by an existing group.','learning/branching.do?method=performBranching','learning/branching.do?method=performBranching','monitoring/complexProgress.do',NULL,'monitoring/branchingExportPortfolio?mode=teacher','monitoring/groupedBranching.do?method=viewBranching','monitoring/groupedBranching.do?method=assignBranch',NULL,'2009-05-21 17:32:34',NULL,NULL),(8,12,'Tool Output Based Branching','Select between multiple sequence activities, with the branch chosen on results of another activity.','learning/branching.do?method=performBranching','learning/branching.do?method=performBranching','monitoring/complexProgress.do',NULL,'monitoring/branchingExportPortfolio?mode=teacher','monitoring/toolBranching.do?method=viewBranching','monitoring/toolBranching.do?method=viewBranching',NULL,'2009-05-21 17:32:34',NULL,NULL),(9,8,'Sequence','A sequence of activities','learning/SequenceActivity.do','learning/SequenceActivity.do','monitoring/complexProgress.do',NULL,'monitoring/sequenceExportPortfolio?mode=teacher','monitoring/sequence.do?method=viewSequence','monitoring/sequence.do?method=viewSequence',NULL,'2009-05-21 17:32:34',NULL,NULL),(10,14,'Condition Gate','Gate: Opens if conditions are met','learning/gate.do?method=knockGate','learning/gate.do?method=knockGate',NULL,NULL,'monitoring/gateExportPortfolio?mode=teacher','monitoring/gate.do?method=viewGate','monitoring/gate.do?method=viewGate',NULL,'2009-05-21 17:32:34',NULL,NULL),(11,15,'Floating Activities','A collection of floating activities',NULL,NULL,NULL,'monitoring/floatingExportPortfolio?mode=learner','monitoring/floatingExportPortfolio?mode=teacher','monitoring/floating.do?method=viewFloating','monitoring/floating.do?method=viewFloating',NULL,'2009-05-21 17:32:34',NULL,NULL); /*!40000 ALTER TABLE `lams_system_tool` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_text_search_condition` -- DROP TABLE IF EXISTS `lams_text_search_condition`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_text_search_condition` ( `condition_id` bigint(20) NOT NULL, `text_search_all_words` text, `text_search_phrase` text, `text_search_any_words` text, `text_search_excluded_words` text, PRIMARY KEY (`condition_id`), CONSTRAINT `TextSearchConditionInheritance` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_text_search_condition` -- LOCK TABLES `lams_text_search_condition` WRITE; /*!40000 ALTER TABLE `lams_text_search_condition` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_text_search_condition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_tool` -- DROP TABLE IF EXISTS `lams_tool`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_tool` ( `tool_id` bigint(20) NOT NULL auto_increment, `tool_signature` varchar(64) NOT NULL, `service_name` varchar(255) NOT NULL, `tool_display_name` varchar(255) NOT NULL, `description` text, `tool_identifier` varchar(64) NOT NULL, `tool_version` varchar(10) NOT NULL, `learning_library_id` bigint(20) default NULL, `default_tool_content_id` bigint(20) default NULL, `valid_flag` tinyint(1) NOT NULL default '1', `grouping_support_type_id` int(3) NOT NULL, `supports_run_offline_flag` tinyint(1) NOT NULL, `learner_url` text NOT NULL, `learner_preview_url` text COMMENT 'Learner screen for preview a learning design. ', `learner_progress_url` text COMMENT 'Teacher''s view of a learner''s screen.', `author_url` text NOT NULL, `define_later_url` text, `export_pfolio_learner_url` text, `export_pfolio_class_url` text, `monitor_url` text, `contribute_url` text, `moderation_url` text, `pedagogical_planner_url` text, `help_url` text, `create_date_time` datetime NOT NULL, `language_file` varchar(255) default NULL, `modified_date_time` datetime default NULL, `admin_url` text, `supports_outputs` tinyint(1) default '0', `ext_lms_id` varchar(255) default NULL, PRIMARY KEY (`tool_id`), UNIQUE KEY `UQ_lams_tool_sig` (`tool_signature`), UNIQUE KEY `UQ_lams_tool_class_name` (`service_name`), KEY `learning_library_id` (`learning_library_id`), KEY `grouping_support_type_id` (`grouping_support_type_id`), CONSTRAINT `FK_lams_tool_1` FOREIGN KEY (`learning_library_id`) REFERENCES `lams_learning_library` (`learning_library_id`), CONSTRAINT `FK_lams_tool_2` FOREIGN KEY (`grouping_support_type_id`) REFERENCES `lams_grouping_support_type` (`grouping_support_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_tool` -- LOCK TABLES `lams_tool` WRITE; /*!40000 ALTER TABLE `lams_tool` DISABLE KEYS */; INSERT INTO `lams_tool` VALUES (1,'lafrum11','forumService','Forum','Forum / Message Boards','forum','20081118',1,1,1,2,1,'tool/lafrum11/learning/viewForum.do?mode=learner','tool/lafrum11/learning/viewForum.do?mode=author','tool/lafrum11/learning/viewForum.do?mode=teacher','tool/lafrum11/authoring.do','tool/lafrum11/defineLater.do','tool/lafrum11/exportPortfolio?mode=learner','tool/lafrum11/exportPortfolio?mode=teacher','tool/lafrum11/monitoring.do','tool/lafrum11/contribute.do','tool/lafrum11/moderate.do','tool/lafrum11/authoring/initPedagogicalPlannerForm.do','http://wiki.lamsfoundation.org/display/lamsdocs/lafrum11','2009-05-21 17:32:48','org.lamsfoundation.lams.tool.forum.ApplicationResources','2009-05-21 17:32:48',NULL,1,NULL),(2,'lanb11','nbService','NoticeboardX','Displays a NoticeboardX','nb','20081209',2,2,1,2,1,'tool/lanb11/starter/learner.do?mode=learner','tool/lanb11/starter/learner.do?mode=author','tool/lanb11/starter/learner.do?mode=teacher','tool/lanb11/authoring.do','tool/lanb11/authoring.do?defineLater=true','tool/lanb11/portfolioExport?mode=learner','tool/lanb11/portfolioExport?mode=teacher','tool/lanb11/monitoring.do',NULL,NULL,'tool/lanb11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lanb11','2009-05-21 17:32:53','org.lamsfoundation.lams.tool.noticeboard.ApplicationResources','2009-05-21 17:32:53',NULL,0,NULL),(3,'laqa11','qaService','Question and Answer','Q/A Tool','qa','20081126',3,3,1,2,1,'tool/laqa11/learningStarter.do?mode=learner','tool/laqa11/learningStarter.do?mode=author','tool/laqa11/learningStarter.do?mode=teacher','tool/laqa11/authoringStarter.do','tool/laqa11/defineLaterStarter.do','tool/laqa11/exportPortfolio?mode=learner','tool/laqa11/exportPortfolio?mode=teacher','tool/laqa11/monitoringStarter.do','tool/laqa11/monitoringStarter.do','tool/laqa11/monitoringStarter.do','tool/laqa11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/laqa11','2009-05-21 17:32:58','org.lamsfoundation.lams.tool.qa.ApplicationResources','2009-05-21 17:32:58','tool/laqa11/laqa11admin.do',1,NULL),(4,'lasbmt11','submitFilesService','Submit File','Submit File Tool Description','submitfile','20090113',4,4,1,2,1,'tool/lasbmt11/learner.do?mode=learner','tool/lasbmt11/learner.do?mode=author','tool/lasbmt11/learner.do?mode=teacher','tool/lasbmt11/authoring.do','tool/lasbmt11/definelater.do?mode=teacher','tool/lasbmt11/exportPortfolio?mode=learner','tool/lasbmt11/exportPortfolio?mode=teacher','tool/lasbmt11/monitoring.do','tool/lasbmt11/contribute.do','tool/lasbmt11/moderation.do','tool/lasbmt11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lasbmt11','2009-05-21 17:33:02','org.lamsfoundation.lams.tool.sbmt.ApplicationResources','2009-05-21 17:33:02',NULL,0,NULL),(5,'lachat11','chatService','Chat','Chat','chat','20081125',5,5,1,2,1,'tool/lachat11/learning.do?mode=learner','tool/lachat11/learning.do?mode=author','tool/lachat11/learning.do?mode=teacher','tool/lachat11/authoring.do','tool/lachat11/authoring.do?mode=teacher','tool/lachat11/exportPortfolio?mode=learner','tool/lachat11/exportPortfolio?mode=teacher','tool/lachat11/monitoring.do','tool/lachat11/contribute.do','tool/lachat11/moderate.do','tool/lachat11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lachat11','2009-05-21 17:33:09','org.lamsfoundation.lams.tool.chat.ApplicationResources','2009-05-21 17:33:09',NULL,1,NULL),(6,'larsrc11','resourceService','Shared Resources','Shared Resources','sharedresources','20090115',6,6,1,2,1,'tool/larsrc11/learning/start.do?mode=learner','tool/larsrc11/learning/start.do?mode=author','tool/larsrc11/learning/start.do?mode=teacher','tool/larsrc11/authoring/start.do','tool/larsrc11/definelater.do','tool/larsrc11/exportPortfolio?mode=learner','tool/larsrc11/exportPortfolio?mode=teacher','tool/larsrc11/monitoring/summary.do','tool/larsrc11/contribute.do','tool/larsrc11/moderate.do','tool/larsrc11/authoring/initPedagogicalPlannerForm.do','http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11','2009-05-21 17:33:16','org.lamsfoundation.lams.tool.rsrc.ApplicationResources','2009-05-21 17:33:16',NULL,0,NULL),(7,'lavote11','voteService','Voting','Voting','vote','20081203',7,7,1,2,1,'tool/lavote11/learningStarter.do?mode=learner','tool/lavote11/learningStarter.do?mode=author','tool/lavote11/learningStarter.do?mode=teacher','tool/lavote11/authoringStarter.do','tool/lavote11/defineLaterStarter.do','tool/lavote11/exportPortfolio?mode=learner','tool/lavote11/exportPortfolio?mode=teacher','tool/lavote11/monitoringStarter.do','tool/lavote11/monitoringStarter.do','tool/lavote11/monitoringStarter.do','tool/lavote11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lavote11','2009-05-21 17:33:20','org.lamsfoundation.lams.tool.vote.ApplicationResources','2009-05-21 17:33:20',NULL,1,NULL),(8,'lantbk11','notebookService','Notebook','Notebook','notebook','20081118',8,8,1,2,1,'tool/lantbk11/learning.do?mode=learner','tool/lantbk11/learning.do?mode=author','tool/lantbk11/learning.do?mode=teacher','tool/lantbk11/authoring.do','tool/lantbk11/authoring.do?mode=teacher','tool/lantbk11/exportPortfolio?mode=learner','tool/lantbk11/exportPortfolio?mode=teacher','tool/lantbk11/monitoring.do','tool/lantbk11/contribute.do','tool/lantbk11/moderate.do','tool/lantbk11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lantbk11','2009-05-21 17:33:25','org.lamsfoundation.lams.tool.notebook.ApplicationResources','2009-05-21 17:33:25',NULL,1,NULL),(9,'lasurv11','lasurvSurveyService','Survey','Survey','survey','20081021',9,9,1,2,1,'tool/lasurv11/learning/start.do?mode=learner','tool/lasurv11/learning/start.do?mode=author','tool/lasurv11/learning/start.do?mode=teacher','tool/lasurv11/authoring/start.do','tool/lasurv11/definelater.do','tool/lasurv11/exportPortfolio?mode=learner','tool/lasurv11/exportPortfolio?mode=teacher','tool/lasurv11/monitoring/summary.do','tool/lasurv11/contribute.do','tool/lasurv11/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/lasurv11','2009-05-21 17:33:33','org.lamsfoundation.lams.tool.survey.ApplicationResources','2009-05-21 17:33:33',NULL,1,NULL),(10,'lascrb11','lascrbScribeService','Scribe','Scribe','scribe','20090226',10,10,1,2,1,'tool/lascrb11/learning.do?mode=learner','tool/lascrb11/learning.do?mode=author','tool/lascrb11/learning.do?mode=teacher','tool/lascrb11/authoring.do','tool/lascrb11/authoring.do?mode=teacher','tool/lascrb11/exportPortfolio?mode=learner','tool/lascrb11/exportPortfolio?mode=teacher','tool/lascrb11/monitoring.do','tool/lascrb11/contribute.do','tool/lascrb11/moderate.do','tool/lascrb11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lascrb11','2009-05-21 17:33:40','org.lamsfoundation.lams.tool.scribe.ApplicationResources','2009-05-21 17:33:40',NULL,0,NULL),(11,'latask10','lataskTaskListService','Shared TaskList','Shared TaskList','sharedtaskList','20090113',11,11,1,2,1,'tool/latask10/learning/start.do?mode=learner','tool/latask10/learning/start.do?mode=author','tool/latask10/learning/start.do?mode=teacher','tool/latask10/authoring/start.do','tool/latask10/definelater.do','tool/latask10/exportPortfolio?mode=learner','tool/latask10/exportPortfolio?mode=teacher','tool/latask10/monitoring/summary.do','tool/latask10/contribute.do','tool/latask10/moderate.do','tool/latask10/authoring/initPedagogicalPlannerForm.do','http://wiki.lamsfoundation.org/display/lamsdocs/latask10','2009-05-21 17:33:47','org.lamsfoundation.lams.tool.taskList.ApplicationResources','2009-05-21 17:33:47',NULL,1,NULL),(12,'lagmap10','gmapService','Gmap','Gmap','gmap','20080521',12,12,1,2,1,'tool/lagmap10/learning.do?mode=learner','tool/lagmap10/learning.do?mode=author','tool/lagmap10/learning.do?mode=teacher','tool/lagmap10/authoring.do','tool/lagmap10/authoring.do?mode=teacher','tool/lagmap10/exportPortfolio?mode=learner','tool/lagmap10/exportPortfolio?mode=teacher','tool/lagmap10/monitoring.do','tool/lagmap10/contribute.do','tool/lagmap10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/lagmap10','2009-05-21 17:33:53','org.lamsfoundation.lams.tool.gmap.ApplicationResources','2009-05-21 17:33:53','tool/lagmap10/lagmap10admin.do',0,NULL),(13,'lasprd10','spreadsheetService','Spreadsheet Tool','Spreadsheet Tool','spreadsheet','20080612',13,13,1,2,1,'tool/lasprd10/learning/start.do?mode=learner','tool/lasprd10/learning/start.do?mode=author','tool/lasprd10/learning/start.do?mode=teacher','tool/lasprd10/authoring/start.do','tool/lasprd10/definelater.do','tool/lasprd10/exportPortfolio?mode=learner','tool/lasprd10/exportPortfolio?mode=teacher','tool/lasprd10/monitoring/summary.do','tool/lasprd10/contribute.do','tool/lasprd10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/lasprd10','2009-05-21 17:33:59','org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources','2009-05-21 17:33:59',NULL,0,NULL),(14,'ladaco10','dacoService','Data Collection','Collecting data with custom structure.','daco','20090326',14,14,1,2,1,'tool/ladaco10/learning/start.do?mode=learner','tool/ladaco10/learning/start.do?mode=author','tool/ladaco10/learning/start.do?mode=teacher','tool/ladaco10/authoring/start.do','tool/ladaco10/definelater.do','tool/ladaco10/exportPortfolio?mode=learner','tool/ladaco10/exportPortfolio?mode=teacher','tool/ladaco10/monitoring/summary.do','tool/ladaco10/contribute.do','tool/ladaco10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10','2009-05-21 17:34:05','org.lamsfoundation.lams.tool.daco.ApplicationResources','2009-05-21 17:34:05',NULL,1,NULL),(15,'lawiki10','wikiService','Wiki','Wiki','wiki','20090121',15,15,1,2,1,'tool/lawiki10/learning.do?mode=learner','tool/lawiki10/learning.do?mode=author','tool/lawiki10/learning.do?mode=teacher','tool/lawiki10/authoring.do','tool/lawiki10/authoring.do?mode=teacher','tool/lawiki10/exportPortfolio?mode=learner','tool/lawiki10/exportPortfolio?mode=teacher','tool/lawiki10/monitoring.do','tool/lawiki10/contribute.do','tool/lawiki10/moderate.do','tool/lawiki10/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lawiki10','2009-05-21 17:34:11','org.lamsfoundation.lams.tool.wiki.ApplicationResources','2009-05-21 17:34:11',NULL,1,NULL),(16,'laimag10','laimagImageGalleryService','ImageGallery','ImageGallery','imageGallery','20081007',16,16,1,2,1,'tool/laimag10/learning/start.do?mode=learner','tool/laimag10/learning/start.do?mode=author','tool/laimag10/learning/start.do?mode=teacher','tool/laimag10/authoring/start.do','tool/laimag10/definelater.do','tool/laimag10/exportPortfolio?mode=learner','tool/laimag10/exportPortfolio?mode=teacher','tool/laimag10/monitoring/summary.do','tool/laimag10/contribute.do','tool/laimag10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/laimag10','2009-05-21 17:34:19','org.lamsfoundation.lams.tool.imageGallery.ApplicationResources','2009-05-21 17:34:19','tool/laimag10/laimag10admin/start.do',1,NULL),(17,'laddim10','dimdimService','Dimdim','Dimdim','dimdim','20080811',17,17,1,2,1,'tool/laddim10/learning.do?mode=learner','tool/laddim10/learning.do?mode=author','tool/laddim10/learning.do?mode=teacher','tool/laddim10/authoring.do','tool/laddim10/authoring.do?mode=teacher','tool/laddim10/exportPortfolio?mode=learner','tool/laddim10/exportPortfolio?mode=teacher','tool/laddim10/monitoring.do','tool/laddim10/contribute.do','tool/laddim10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/laddim10','2009-05-21 17:34:24','org.lamsfoundation.lams.tool.dimdim.ApplicationResources','2009-05-21 17:34:24','tool/laddim10/admin/view.do',0,NULL),(18,'lavidr10','videoRecorderService','VideoRecorder','VideoRecorder','videoRecorder','20081208',18,18,1,2,1,'tool/lavidr10/learning.do?mode=learner','tool/lavidr10/learning.do?mode=author','tool/lavidr10/learning.do?mode=teacher','tool/lavidr10/authoring.do','tool/lavidr10/authoring.do?mode=teacher','tool/lavidr10/exportPortfolio?mode=learner','tool/lavidr10/exportPortfolio?mode=teacher','tool/lavidr10/monitoring.do','tool/lavidr10/contribute.do','tool/lavidr10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/lavidr10','2009-05-21 17:34:31','org.lamsfoundation.lams.tool.videoRecorder.ApplicationResources','2009-05-21 17:34:31',NULL,1,NULL),(19,'lamind10','mindmapService','Mindmap','Mindmap','mindmap','20090202',19,19,1,2,1,'tool/lamind10/learning.do?mode=learner','tool/lamind10/learning.do?mode=author','tool/lamind10/learning.do?mode=teacher','tool/lamind10/authoring.do','tool/lamind10/authoring.do?mode=teacher','tool/lamind10/exportPortfolio?mode=learner','tool/lamind10/exportPortfolio?mode=teacher','tool/lamind10/monitoring.do','tool/lamind10/contribute.do','tool/lamind10/moderate.do','tool/lamind10/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lamind10','2009-05-21 17:34:37','org.lamsfoundation.lams.tool.mindmap.ApplicationResources','2009-05-21 17:34:37',NULL,1,NULL),(20,'laasse10','laasseAssessmentService','Assessment','Assessment','assessment','20090109',20,20,1,2,1,'tool/laasse10/learning/start.do?mode=learner','tool/laasse10/learning/start.do?mode=author','tool/laasse10/learning/start.do?mode=teacher','tool/laasse10/authoring/start.do','tool/laasse10/definelater.do','tool/laasse10/exportPortfolio?mode=learner','tool/laasse10/exportPortfolio?mode=teacher','tool/laasse10/monitoring/summary.do','tool/laasse10/contribute.do','tool/laasse10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/laasse10','2009-05-21 17:34:44','org.lamsfoundation.lams.tool.assessment.ApplicationResources','2009-05-21 17:34:44',NULL,1,NULL),(21,'lapixl10','pixlrService','Pixlr','Pixlr','pixlr','20081217',21,21,1,2,1,'tool/lapixl10/learning.do?mode=learner','tool/lapixl10/learning.do?mode=author','tool/lapixl10/learning.do?mode=teacher','tool/lapixl10/authoring.do','tool/lapixl10/authoring.do?mode=teacher','tool/lapixl10/exportPortfolio?mode=learner','tool/lapixl10/exportPortfolio?mode=teacher','tool/lapixl10/monitoring.do','tool/lapixl10/contribute.do','tool/lapixl10/moderate.do',NULL,'http://wiki.lamsfoundation.org/display/lamsdocs/lapixl10','2009-05-21 17:34:50','org.lamsfoundation.lams.tool.pixlr.ApplicationResources','2009-05-21 17:34:50','tool/lapixl10/lapixl10admin.do',0,NULL),(22,'lamc11','mcService','MCQ','Multiple Choice Questions','mc','20081127',22,22,1,2,1,'tool/lamc11/learningStarter.do?mode=learner','tool/lamc11/learningStarter.do?mode=author','tool/lamc11/learningStarter.do?mode=teacher','tool/lamc11/authoringStarter.do','tool/lamc11/defineLaterStarter.do','tool/lamc11/exportPortfolio?mode=learner','tool/lamc11/exportPortfolio?mode=teacher','tool/lamc11/monitoringStarter.do','tool/lamc11/monitoringStarter.do','tool/lamc11/monitoringStarter.do','tool/lamc11/pedagogicalPlanner.do','http://wiki.lamsfoundation.org/display/lamsdocs/lamc11','2009-05-21 17:34:53','org.lamsfoundation.lams.tool.mc.ApplicationResources','2009-05-21 17:34:53',NULL,1,NULL); /*!40000 ALTER TABLE `lams_tool` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_tool_content` -- DROP TABLE IF EXISTS `lams_tool_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_tool_content` ( `tool_content_id` bigint(20) NOT NULL auto_increment, `tool_id` bigint(20) NOT NULL, PRIMARY KEY (`tool_content_id`), KEY `tool_id` (`tool_id`), CONSTRAINT `FK_lams_tool_content_1` FOREIGN KEY (`tool_id`) REFERENCES `lams_tool` (`tool_id`) ) ENGINE=InnoDB AUTO_INCREMENT=117 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_tool_content` -- LOCK TABLES `lams_tool_content` WRITE; /*!40000 ALTER TABLE `lams_tool_content` DISABLE KEYS */; INSERT INTO `lams_tool_content` VALUES (1,1),(45,1),(86,1),(2,2),(23,2),(24,2),(27,2),(28,2),(30,2),(31,2),(32,2),(33,2),(35,2),(36,2),(38,2),(39,2),(40,2),(43,2),(49,2),(50,2),(54,2),(56,2),(57,2),(58,2),(63,2),(65,2),(66,2),(68,2),(71,2),(73,2),(74,2),(75,2),(76,2),(78,2),(80,2),(82,2),(83,2),(84,2),(88,2),(90,2),(92,2),(94,2),(99,2),(100,2),(102,2),(103,2),(104,2),(107,2),(108,2),(112,2),(115,2),(116,2),(3,3),(44,3),(98,3),(4,4),(47,4),(93,4),(5,5),(6,6),(34,6),(41,6),(59,6),(60,6),(61,6),(62,6),(64,6),(67,6),(69,6),(81,6),(87,6),(105,6),(106,6),(109,6),(110,6),(111,6),(113,6),(114,6),(7,7),(48,7),(97,7),(8,8),(52,8),(96,8),(9,9),(46,9),(95,9),(10,10),(11,11),(12,12),(51,12),(89,12),(13,13),(37,13),(79,13),(14,14),(55,14),(101,14),(15,15),(53,15),(85,15),(16,16),(26,16),(70,16),(17,17),(18,18),(19,19),(29,19),(72,19),(20,20),(21,21),(25,21),(77,21),(22,22),(42,22),(91,22); /*!40000 ALTER TABLE `lams_tool_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_tool_import_support` -- DROP TABLE IF EXISTS `lams_tool_import_support`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_tool_import_support` ( `id` bigint(20) NOT NULL auto_increment, `installed_tool_signature` varchar(15) NOT NULL, `supports_tool_signature` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_tool_import_support` -- LOCK TABLES `lams_tool_import_support` WRITE; /*!40000 ALTER TABLE `lams_tool_import_support` DISABLE KEYS */; INSERT INTO `lams_tool_import_support` VALUES (1,'lafrum11','messageboard'),(2,'lamc11','simpleassessment'),(3,'lanb11','noticeboard'),(4,'lanb11','htmlnb'),(5,'laqa11','qa'),(6,'lasbmt11','reportsubmission'),(7,'lachat11','chat'),(8,'larsrc11','urlcontent'),(11,'lavote11','ranking'),(12,'lantbk11','journal'),(13,'lascrb11','groupreporting'),(14,'lasurv11','survey'); /*!40000 ALTER TABLE `lams_tool_import_support` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_tool_session` -- DROP TABLE IF EXISTS `lams_tool_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_tool_session` ( `tool_session_id` bigint(20) NOT NULL auto_increment, `tool_session_name` varchar(255) NOT NULL, `tool_session_type_id` int(3) NOT NULL, `lesson_id` bigint(20) NOT NULL, `activity_id` bigint(20) NOT NULL, `tool_session_state_id` int(3) NOT NULL, `create_date_time` datetime NOT NULL, `group_id` bigint(20) default NULL, `user_id` bigint(20) default NULL, `unique_key` varchar(128) NOT NULL, PRIMARY KEY (`tool_session_id`), UNIQUE KEY `UQ_lams_tool_session_1` (`unique_key`), KEY `tool_session_state_id` (`tool_session_state_id`), KEY `user_id` (`user_id`), KEY `tool_session_type_id` (`tool_session_type_id`), KEY `activity_id` (`activity_id`), KEY `group_id` (`group_id`), CONSTRAINT `FK_lams_tool_session_4` FOREIGN KEY (`tool_session_state_id`) REFERENCES `lams_tool_session_state` (`tool_session_state_id`), CONSTRAINT `FK_lams_tool_session_5` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`), CONSTRAINT `FK_lams_tool_session_7` FOREIGN KEY (`tool_session_type_id`) REFERENCES `lams_tool_session_type` (`tool_session_type_id`), CONSTRAINT `FK_lams_tool_session_8` FOREIGN KEY (`activity_id`) REFERENCES `lams_learning_activity` (`activity_id`), CONSTRAINT `FK_lams_tool_session_1` FOREIGN KEY (`group_id`) REFERENCES `lams_group` (`group_id`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_tool_session` -- LOCK TABLES `lams_tool_session` WRITE; /*!40000 ALTER TABLE `lams_tool_session` DISABLE KEYS */; INSERT INTO `lams_tool_session` VALUES (1,'Everybody learners',1,1,89,1,'2009-05-21 17:38:28',1,NULL,'uq_89_1'),(2,'Everybody learners',1,1,90,1,'2009-05-21 17:38:28',1,NULL,'uq_90_1'),(3,'Everybody learners',1,1,91,1,'2009-05-21 17:38:28',1,NULL,'uq_91_1'),(4,'Everybody learners',1,1,92,1,'2009-05-21 17:38:28',1,NULL,'uq_92_1'),(5,'Everybody learners',1,1,93,1,'2009-05-21 17:38:28',1,NULL,'uq_93_1'),(6,'Everybody learners',1,1,94,1,'2009-05-21 17:38:28',1,NULL,'uq_94_1'),(7,'Everybody learners',1,1,95,1,'2009-05-21 17:38:28',1,NULL,'uq_95_1'),(8,'Everybody learners',1,1,96,1,'2009-05-21 17:38:28',1,NULL,'uq_96_1'),(9,'Everybody learners',1,2,98,1,'2009-05-21 17:39:13',3,NULL,'uq_98_3'),(10,'Everybody learners',1,2,97,1,'2009-05-21 17:39:13',3,NULL,'uq_97_3'),(11,'Everybody learners',1,2,100,1,'2009-05-21 17:39:13',3,NULL,'uq_100_3'),(12,'Everybody learners',1,2,101,1,'2009-05-21 17:39:13',3,NULL,'uq_101_3'),(13,'Everybody learners',1,2,102,1,'2009-05-21 17:39:13',3,NULL,'uq_102_3'),(14,'Everybody learners',1,2,103,1,'2009-05-21 17:39:13',3,NULL,'uq_103_3'),(15,'Everybody learners',1,2,104,1,'2009-05-21 17:39:13',3,NULL,'uq_104_3'),(16,'Everybody learners',1,2,106,1,'2009-05-21 17:39:13',3,NULL,'uq_106_3'),(17,'Everybody learners',1,2,116,1,'2009-05-21 17:39:13',3,NULL,'uq_116_3'),(18,'Everybody learners',1,2,117,1,'2009-05-21 17:39:13',3,NULL,'uq_117_3'),(19,'Everybody learners',1,2,123,1,'2009-05-21 17:39:13',3,NULL,'uq_123_3'),(20,'Everybody learners',1,2,105,1,'2009-05-21 17:39:13',3,NULL,'uq_105_3'),(21,'Everybody learners',1,2,110,1,'2009-05-21 17:39:13',3,NULL,'uq_110_3'),(22,'Everybody learners',1,2,113,1,'2009-05-21 17:39:13',3,NULL,'uq_113_3'),(23,'Everybody learners',1,2,125,1,'2009-05-21 17:39:13',3,NULL,'uq_125_3'),(24,'Everybody learners',1,2,109,1,'2009-05-21 17:39:13',3,NULL,'uq_109_3'),(25,'Everybody learners',1,2,112,1,'2009-05-21 17:39:13',3,NULL,'uq_112_3'),(26,'Everybody learners',1,2,108,1,'2009-05-21 17:39:13',3,NULL,'uq_108_3'),(27,'Everybody learners',1,2,111,1,'2009-05-21 17:39:13',3,NULL,'uq_111_3'),(28,'Everybody learners',1,2,107,1,'2009-05-21 17:39:13',3,NULL,'uq_107_3'),(29,'Everybody learners',1,2,115,1,'2009-05-21 17:39:13',3,NULL,'uq_115_3'),(30,'Everybody learners',1,2,114,1,'2009-05-21 17:39:13',3,NULL,'uq_114_3'),(31,'Everybody learners',1,2,118,1,'2009-05-21 17:39:13',3,NULL,'uq_118_3'),(32,'Everybody learners',1,2,119,1,'2009-05-21 17:39:13',3,NULL,'uq_119_3'),(33,'Everybody learners',1,2,120,1,'2009-05-21 17:39:14',3,NULL,'uq_120_3'),(34,'Everybody learners',1,3,133,1,'2009-05-21 17:39:20',5,NULL,'uq_133_5'),(35,'Everybody learners',1,3,134,1,'2009-05-21 17:39:20',5,NULL,'uq_134_5'),(36,'Everybody learners',1,3,136,1,'2009-05-21 17:39:20',5,NULL,'uq_136_5'),(37,'Everybody learners',1,3,137,1,'2009-05-21 17:39:20',5,NULL,'uq_137_5'),(38,'Everybody learners',1,3,128,1,'2009-05-21 17:39:20',5,NULL,'uq_128_5'),(39,'Everybody learners',1,3,132,1,'2009-05-21 17:39:20',5,NULL,'uq_132_5'),(40,'Everybody learners',1,3,127,1,'2009-05-21 17:39:20',5,NULL,'uq_127_5'),(41,'Everybody learners',1,3,129,1,'2009-05-21 17:39:20',5,NULL,'uq_129_5'),(42,'Everybody learners',1,3,131,1,'2009-05-21 17:39:20',5,NULL,'uq_131_5'),(43,'Everybody learners',1,4,141,1,'2009-05-21 17:39:29',7,NULL,'uq_141_7'),(44,'Everybody learners',1,4,142,1,'2009-05-21 17:39:29',7,NULL,'uq_142_7'),(45,'Everybody learners',1,4,143,1,'2009-05-21 17:39:29',7,NULL,'uq_143_7'),(46,'Everybody learners',1,4,144,1,'2009-05-21 17:39:29',7,NULL,'uq_144_7'),(47,'Everybody learners',1,4,145,1,'2009-05-21 17:39:29',7,NULL,'uq_145_7'); /*!40000 ALTER TABLE `lams_tool_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_tool_session_state` -- DROP TABLE IF EXISTS `lams_tool_session_state`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_tool_session_state` ( `tool_session_state_id` int(3) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`tool_session_state_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_tool_session_state` -- LOCK TABLES `lams_tool_session_state` WRITE; /*!40000 ALTER TABLE `lams_tool_session_state` DISABLE KEYS */; INSERT INTO `lams_tool_session_state` VALUES (1,'STARTED'),(2,'ENDED'); /*!40000 ALTER TABLE `lams_tool_session_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_tool_session_type` -- DROP TABLE IF EXISTS `lams_tool_session_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_tool_session_type` ( `tool_session_type_id` int(3) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`tool_session_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_tool_session_type` -- LOCK TABLES `lams_tool_session_type` WRITE; /*!40000 ALTER TABLE `lams_tool_session_type` DISABLE KEYS */; INSERT INTO `lams_tool_session_type` VALUES (1,'NON_GROUPED'),(2,'GROUPED'); /*!40000 ALTER TABLE `lams_tool_session_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_user` -- DROP TABLE IF EXISTS `lams_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_user` ( `user_id` bigint(20) NOT NULL auto_increment, `login` varchar(255) NOT NULL, `password` varchar(50) NOT NULL, `title` varchar(32) default NULL, `first_name` varchar(128) default NULL, `last_name` varchar(128) default NULL, `address_line_1` varchar(64) default NULL, `address_line_2` varchar(64) default NULL, `address_line_3` varchar(64) default NULL, `city` varchar(64) default NULL, `state` varchar(64) default NULL, `postcode` varchar(10) default NULL, `country` varchar(64) default NULL, `day_phone` varchar(64) default NULL, `evening_phone` varchar(64) default NULL, `mobile_phone` varchar(64) default NULL, `fax` varchar(64) default NULL, `email` varchar(128) default NULL, `disabled_flag` tinyint(1) NOT NULL default '0', `create_date` datetime NOT NULL, `authentication_method_id` bigint(20) NOT NULL default '0', `workspace_id` bigint(20) default NULL, `flash_theme_id` bigint(20) default NULL, `html_theme_id` bigint(20) default NULL, `chat_id` varchar(255) default NULL COMMENT 'ID used for Jabber', `locale_id` int(11) default NULL, `portrait_uuid` bigint(20) default NULL, `change_password` tinyint(4) default '0', `enable_flash` tinyint(1) default '1', `lams_community_token` varchar(255) default NULL, `lams_community_username` varchar(255) default NULL, `timezone` tinyint(4) default NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `UQ_lams_user_login` (`login`), KEY `authentication_method_id` (`authentication_method_id`), KEY `workspace_id` (`workspace_id`), KEY `flash_theme_id` (`flash_theme_id`), KEY `html_theme_id` (`html_theme_id`), KEY `locale_id` (`locale_id`), KEY `login` (`login`), KEY `email` (`email`), CONSTRAINT `FK_lams_user_1` FOREIGN KEY (`authentication_method_id`) REFERENCES `lams_authentication_method` (`authentication_method_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_user_2` FOREIGN KEY (`workspace_id`) REFERENCES `lams_workspace` (`workspace_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_user_4` FOREIGN KEY (`flash_theme_id`) REFERENCES `lams_css_theme_ve` (`theme_ve_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_user_5` FOREIGN KEY (`html_theme_id`) REFERENCES `lams_css_theme_ve` (`theme_ve_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_user_6` FOREIGN KEY (`locale_id`) REFERENCES `lams_supported_locale` (`locale_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_user` -- LOCK TABLES `lams_user` WRITE; /*!40000 ALTER TABLE `lams_user` DISABLE KEYS */; INSERT INTO `lams_user` VALUES (1,'sysadmin','a159b7ae81ba3552af61e9731b20870515944538','The','System','Administrator',NULL,NULL,NULL,'Sydney','NSW',NULL,'Australia',NULL,NULL,NULL,NULL,'sysadmin@x.x',0,'2009-05-21 17:32:34',1,51,1,2,NULL,1,NULL,0,1,NULL,NULL,28),(5,'test1','b444ac06613fc8d63795be9ad0beaf55011936ac','Dr','One','Test','1','Test Ave',NULL,'Nowhere','NSW',NULL,'Australia','0211111111','0211111112','0411111111','0211111113','test1@xx.os',0,'2004-12-23 00:00:00',1,5,1,2,NULL,1,NULL,0,1,NULL,NULL,28),(6,'test2','109f4b3c50d7b0df729d299bc6f8e9ef9066971f','Dr','Two','Test','2','Test Ave',NULL,'Nowhere','NSW',NULL,'Australia','0211111111','0211111112','0411111111','0211111113','test2@xx.os',0,'2004-12-23 00:00:00',1,6,1,2,NULL,1,NULL,0,1,NULL,NULL,28),(7,'test3','3ebfa301dc59196f18593c45e519287a23297589','Dr','Three','Test','3','Test Ave',NULL,'Nowhere','NSW',NULL,'Australia','0211111111','0211111112','0411111111','0211111113','test3@xx.os',0,'2004-12-23 00:00:00',1,7,1,2,NULL,1,NULL,0,1,NULL,NULL,28),(8,'test4','1ff2b3704aede04eecb51e50ca698efd50a1379b','Dr','Four','Test','4','Test Ave',NULL,'Nowhere','NSW',NULL,'Australia','0211111111','0211111112','0411111111','0211111113','test4@xx.os',0,'2004-12-23 00:00:00',1,8,1,2,NULL,1,NULL,0,1,NULL,NULL,28); /*!40000 ALTER TABLE `lams_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_user_group` -- DROP TABLE IF EXISTS `lams_user_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_user_group` ( `user_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, PRIMARY KEY (`user_id`,`group_id`), KEY `user_id` (`user_id`), KEY `group_id` (`group_id`), CONSTRAINT `FK_lams_user_group_1` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`), CONSTRAINT `FK_lams_user_group_2` FOREIGN KEY (`group_id`) REFERENCES `lams_group` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_user_group` -- LOCK TABLES `lams_user_group` WRITE; /*!40000 ALTER TABLE `lams_user_group` DISABLE KEYS */; INSERT INTO `lams_user_group` VALUES (5,1),(5,2),(5,3),(5,4),(5,5),(5,6),(5,7),(5,8),(6,1),(6,3),(6,5),(6,7),(7,1),(7,3),(7,5),(7,7),(8,1),(8,3),(8,5),(8,7); /*!40000 ALTER TABLE `lams_user_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_user_organisation` -- DROP TABLE IF EXISTS `lams_user_organisation`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_user_organisation` ( `user_organisation_id` bigint(20) NOT NULL auto_increment, `organisation_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, PRIMARY KEY (`user_organisation_id`), KEY `organisation_id` (`organisation_id`), KEY `user_id` (`user_id`), CONSTRAINT `FK_lams_user_organisation_1` FOREIGN KEY (`organisation_id`) REFERENCES `lams_organisation` (`organisation_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_user_organisation_2` FOREIGN KEY (`user_id`) REFERENCES `lams_user` (`user_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_user_organisation` -- LOCK TABLES `lams_user_organisation` WRITE; /*!40000 ALTER TABLE `lams_user_organisation` DISABLE KEYS */; INSERT INTO `lams_user_organisation` VALUES (1,1,1),(5,2,5),(6,2,6),(7,2,7),(8,2,8),(12,3,5),(13,3,6),(14,3,7),(15,3,8),(19,4,5),(20,4,6),(21,4,7),(22,4,8),(26,5,5),(27,5,6),(28,6,7),(29,6,8); /*!40000 ALTER TABLE `lams_user_organisation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_user_organisation_collapsed` -- DROP TABLE IF EXISTS `lams_user_organisation_collapsed`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_user_organisation_collapsed` ( `user_organisation_id` bigint(20) NOT NULL, `collapsed` tinyint(1) NOT NULL default '1', PRIMARY KEY (`user_organisation_id`), CONSTRAINT `FK_lams_user_organisation_collapsed_1` FOREIGN KEY (`user_organisation_id`) REFERENCES `lams_user_organisation` (`user_organisation_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_user_organisation_collapsed` -- LOCK TABLES `lams_user_organisation_collapsed` WRITE; /*!40000 ALTER TABLE `lams_user_organisation_collapsed` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_user_organisation_collapsed` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_user_organisation_role` -- DROP TABLE IF EXISTS `lams_user_organisation_role`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_user_organisation_role` ( `user_organisation_role_id` bigint(20) NOT NULL auto_increment, `user_organisation_id` bigint(20) NOT NULL, `role_id` int(6) NOT NULL, PRIMARY KEY (`user_organisation_role_id`), KEY `role_id` (`role_id`), KEY `user_organisation_id` (`user_organisation_id`), CONSTRAINT `FK_lams_user_organisation_role_2` FOREIGN KEY (`role_id`) REFERENCES `lams_role` (`role_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_user_organisation_role_3` FOREIGN KEY (`user_organisation_id`) REFERENCES `lams_user_organisation` (`user_organisation_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_user_organisation_role` -- LOCK TABLES `lams_user_organisation_role` WRITE; /*!40000 ALTER TABLE `lams_user_organisation_role` DISABLE KEYS */; INSERT INTO `lams_user_organisation_role` VALUES (1,1,1),(5,5,3),(6,6,3),(7,7,3),(8,8,3),(12,5,4),(13,6,4),(14,7,4),(15,8,4),(19,5,5),(20,6,5),(21,7,5),(22,8,5),(26,12,4),(27,13,4),(28,14,4),(33,12,5),(34,13,5),(35,14,5),(36,15,5),(40,19,3),(41,20,3),(42,21,3),(43,22,3),(47,19,4),(48,20,4),(49,21,4),(50,22,4),(54,19,5),(55,20,5),(56,21,5),(57,22,5),(61,26,4),(62,27,4),(63,28,4),(64,29,4),(68,26,5),(69,27,5),(70,28,5),(71,29,5); /*!40000 ALTER TABLE `lams_user_organisation_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_wkspc_fld_content_type` -- DROP TABLE IF EXISTS `lams_wkspc_fld_content_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_wkspc_fld_content_type` ( `content_type_id` int(3) NOT NULL auto_increment, `description` varchar(64) NOT NULL, PRIMARY KEY (`content_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_wkspc_fld_content_type` -- LOCK TABLES `lams_wkspc_fld_content_type` WRITE; /*!40000 ALTER TABLE `lams_wkspc_fld_content_type` DISABLE KEYS */; INSERT INTO `lams_wkspc_fld_content_type` VALUES (1,'FILE'),(2,'PACKAGE'); /*!40000 ALTER TABLE `lams_wkspc_fld_content_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_wkspc_wkspc_folder` -- DROP TABLE IF EXISTS `lams_wkspc_wkspc_folder`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_wkspc_wkspc_folder` ( `id` bigint(20) NOT NULL auto_increment, `workspace_id` bigint(20) default NULL, `workspace_folder_id` bigint(20) default NULL, PRIMARY KEY (`id`), KEY `workspace_id` (`workspace_id`), KEY `workspace_folder_id` (`workspace_folder_id`), CONSTRAINT `FK_lams_ww_folder_1` FOREIGN KEY (`workspace_id`) REFERENCES `lams_workspace` (`workspace_id`), CONSTRAINT `FK_lams_ww_folder_2` FOREIGN KEY (`workspace_folder_id`) REFERENCES `lams_workspace_folder` (`workspace_folder_id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_wkspc_wkspc_folder` -- LOCK TABLES `lams_wkspc_wkspc_folder` WRITE; /*!40000 ALTER TABLE `lams_wkspc_wkspc_folder` DISABLE KEYS */; INSERT INTO `lams_wkspc_wkspc_folder` VALUES (1,1,1),(2,2,2),(3,2,22),(4,3,3),(5,3,23),(7,5,5),(8,6,6),(9,7,7),(10,8,8),(11,50,40),(12,51,45),(13,52,46); /*!40000 ALTER TABLE `lams_wkspc_wkspc_folder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_workspace` -- DROP TABLE IF EXISTS `lams_workspace`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_workspace` ( `workspace_id` bigint(20) NOT NULL auto_increment, `default_fld_id` bigint(20) default NULL, `def_run_seq_fld_id` bigint(20) default NULL, `name` varchar(255) default NULL, PRIMARY KEY (`workspace_id`), KEY `def_run_seq_fld_id` (`def_run_seq_fld_id`), KEY `default_fld_id` (`default_fld_id`), CONSTRAINT `FK_lams_workspace_1` FOREIGN KEY (`def_run_seq_fld_id`) REFERENCES `lams_workspace_folder` (`workspace_folder_id`), CONSTRAINT `FK_lams_workspace_2` FOREIGN KEY (`default_fld_id`) REFERENCES `lams_workspace_folder` (`workspace_folder_id`) ) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_workspace` -- LOCK TABLES `lams_workspace` WRITE; /*!40000 ALTER TABLE `lams_workspace` DISABLE KEYS */; INSERT INTO `lams_workspace` VALUES (1,1,NULL,'ROOT'),(2,2,22,'Developers Playpen'),(3,3,23,'MATH111'),(5,5,NULL,'One Test'),(6,6,NULL,'Two Test'),(7,7,NULL,'Three Test'),(8,8,NULL,'Four Test'),(50,40,41,'Moodle Test'),(51,45,NULL,'System Administrator'),(52,46,NULL,'Public Folder'); /*!40000 ALTER TABLE `lams_workspace` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_workspace_folder` -- DROP TABLE IF EXISTS `lams_workspace_folder`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_workspace_folder` ( `workspace_folder_id` bigint(20) NOT NULL auto_increment, `parent_folder_id` bigint(20) default NULL, `name` varchar(255) NOT NULL, `user_id` bigint(20) NOT NULL, `create_date_time` datetime NOT NULL, `last_modified_date_time` datetime default NULL, `lams_workspace_folder_type_id` int(3) NOT NULL, PRIMARY KEY (`workspace_folder_id`), KEY `parent_folder_id` (`parent_folder_id`), KEY `lams_workspace_folder_type_id` (`lams_workspace_folder_type_id`), CONSTRAINT `FK_lams_workspace_folder_2` FOREIGN KEY (`parent_folder_id`) REFERENCES `lams_workspace_folder` (`workspace_folder_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `FK_lams_workspace_folder_4` FOREIGN KEY (`lams_workspace_folder_type_id`) REFERENCES `lams_workspace_folder_type` (`lams_workspace_folder_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_workspace_folder` -- LOCK TABLES `lams_workspace_folder` WRITE; /*!40000 ALTER TABLE `lams_workspace_folder` DISABLE KEYS */; INSERT INTO `lams_workspace_folder` VALUES (1,NULL,'ROOT',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',1),(2,1,'Developers Playpen',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',1),(3,1,'MATH111',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',1),(5,NULL,'One Test',5,'2004-12-23 00:00:00','2004-12-23 00:00:00',1),(6,NULL,'Two Test',6,'2004-12-23 00:00:00','2004-12-23 00:00:00',1),(7,NULL,'Three Test',7,'2004-12-23 00:00:00','2004-12-23 00:00:00',1),(8,NULL,'Four Test',8,'2004-12-23 00:00:00','2004-12-23 00:00:00',1),(22,2,'Lesson Sequence Folder',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',2),(23,3,'Lesson Sequence Folder',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',2),(40,1,'Moodle Test',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',2),(41,40,'Lesson Sequence Folder',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',2),(45,NULL,'System Administrator',1,'2006-11-01 00:00:00','2006-11-01 00:00:00',1),(46,1,'Public Folder',1,'2004-12-23 00:00:00','2004-12-23 00:00:00',3); /*!40000 ALTER TABLE `lams_workspace_folder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_workspace_folder_content` -- DROP TABLE IF EXISTS `lams_workspace_folder_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_workspace_folder_content` ( `folder_content_id` bigint(20) NOT NULL auto_increment, `content_type_id` int(3) NOT NULL, `name` varchar(64) NOT NULL, `description` varchar(64) NOT NULL, `create_date_time` datetime NOT NULL, `last_modified_date` datetime NOT NULL, `workspace_folder_id` bigint(20) NOT NULL, `uuid` bigint(20) default NULL, `version_id` bigint(20) default NULL, `mime_type` varchar(10) NOT NULL, PRIMARY KEY (`folder_content_id`), UNIQUE KEY `unique_content_name` (`name`,`workspace_folder_id`,`mime_type`), UNIQUE KEY `unique_node_version` (`workspace_folder_id`,`uuid`,`version_id`), KEY `workspace_folder_id` (`workspace_folder_id`), KEY `content_type_id` (`content_type_id`), CONSTRAINT `FK_lams_workspace_folder_content_1` FOREIGN KEY (`workspace_folder_id`) REFERENCES `lams_workspace_folder` (`workspace_folder_id`), CONSTRAINT `FK_lams_workspace_folder_content_2` FOREIGN KEY (`content_type_id`) REFERENCES `lams_wkspc_fld_content_type` (`content_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_workspace_folder_content` -- LOCK TABLES `lams_workspace_folder_content` WRITE; /*!40000 ALTER TABLE `lams_workspace_folder_content` DISABLE KEYS */; /*!40000 ALTER TABLE `lams_workspace_folder_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lams_workspace_folder_type` -- DROP TABLE IF EXISTS `lams_workspace_folder_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `lams_workspace_folder_type` ( `lams_workspace_folder_type_id` int(3) NOT NULL, `description` varchar(255) NOT NULL, PRIMARY KEY (`lams_workspace_folder_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `lams_workspace_folder_type` -- LOCK TABLES `lams_workspace_folder_type` WRITE; /*!40000 ALTER TABLE `lams_workspace_folder_type` DISABLE KEYS */; INSERT INTO `lams_workspace_folder_type` VALUES (1,'NORMAL'),(2,'RUN SEQUENCES'),(3,'PUBLIC SEQUENCES'); /*!40000 ALTER TABLE `lams_workspace_folder_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `patches` -- DROP TABLE IF EXISTS `patches`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `patches` ( `system_name` varchar(30) NOT NULL, `patch_level` int(11) NOT NULL, `patch_date` timestamp NOT NULL default CURRENT_TIMESTAMP, `patch_in_progress` char(1) NOT NULL default 'F', PRIMARY KEY (`system_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `patches` -- LOCK TABLES `patches` WRITE; /*!40000 ALTER TABLE `patches` DISABLE KEYS */; INSERT INTO `patches` VALUES ('laasse10',20090109,'2009-05-21 07:34:44','F'),('lachat11',20081125,'2009-05-21 07:33:09','F'),('ladaco10',20090326,'2009-05-21 07:34:05','F'),('laddim10',20080811,'2009-05-21 07:34:24','F'),('lafrum11',20081118,'2009-05-21 07:32:48','F'),('lagmap10',20080521,'2009-05-21 07:33:53','F'),('laimag10',20081007,'2009-05-21 07:34:19','F'),('lamc11',20081127,'2009-05-21 07:34:53','F'),('lamind10',20090202,'2009-05-21 07:34:38','F'),('lams',16,'2009-05-21 07:32:34','F'),('lanb11',20081209,'2009-05-21 07:32:55','F'),('lantbk11',20081118,'2009-05-21 07:33:27','F'),('lapixl10',20081217,'2009-05-21 07:34:50','F'),('laqa11',20081126,'2009-05-21 07:32:58','F'),('larsrc11',20090115,'2009-05-21 07:33:17','F'),('lasbmt11',20090113,'2009-05-21 07:33:02','F'),('lascrb11',20090226,'2009-05-21 07:33:40','F'),('lasprd10',20080612,'2009-05-21 07:33:59','F'),('lasurv11',20081021,'2009-05-21 07:33:34','F'),('latask10',20090113,'2009-05-21 07:33:47','F'),('lavidr10',20081208,'2009-05-21 07:34:31','F'),('lavote11',20081203,'2009-05-21 07:33:20','F'),('lawiki10',20090121,'2009-05-21 07:34:11','F'); /*!40000 ALTER TABLE `patches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_assessment` -- DROP TABLE IF EXISTS `tl_laasse10_assessment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_assessment` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `run_offline` tinyint(4) default NULL, `time_limit` int(11) default '0', `attempts_allowed` int(11) default '1', `instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` tinyint(4) default NULL, `define_later` tinyint(4) default NULL, `content_id` bigint(20) default NULL, `allow_question_feedback` tinyint(4) default NULL, `allow_overall_feedback` tinyint(4) default NULL, `allow_right_wrong_answers` tinyint(4) default NULL, `allow_grades_after_attempt` tinyint(4) default NULL, `allow_history_responses` tinyint(4) default NULL, `questions_per_page` int(11) default '0', `shuffled` tinyint(4) default NULL, `attempt_completion_notify` tinyint(4) default '0', PRIMARY KEY (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `FK_NEW_1720029621_89093BF758092FB` (`create_by`), CONSTRAINT `FK_NEW_1720029621_89093BF758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_laasse10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_assessment` -- LOCK TABLES `tl_laasse10_assessment` WRITE; /*!40000 ALTER TABLE `tl_laasse10_assessment` DISABLE KEYS */; INSERT INTO `tl_laasse10_assessment` VALUES (1,NULL,NULL,NULL,'Assessment',0,0,1,'Instructions ',NULL,NULL,0,0,20,0,0,0,0,0,0,0,0); /*!40000 ALTER TABLE `tl_laasse10_assessment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_assessment_overall_feedback` -- DROP TABLE IF EXISTS `tl_laasse10_assessment_overall_feedback`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_assessment_overall_feedback` ( `uid` bigint(20) NOT NULL auto_increment, `assessment_uid` bigint(20) default NULL, `sequence_id` int(11) default NULL, `grade_boundary` int(11) default NULL, `feedback` text, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `FK_tl_laasse10_assessment_overall_feedback_1` (`assessment_uid`), CONSTRAINT `FK_tl_laasse10_assessment_overall_feedback_1` FOREIGN KEY (`assessment_uid`) REFERENCES `tl_laasse10_assessment` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_assessment_overall_feedback` -- LOCK TABLES `tl_laasse10_assessment_overall_feedback` WRITE; /*!40000 ALTER TABLE `tl_laasse10_assessment_overall_feedback` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_assessment_overall_feedback` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_assessment_question` -- DROP TABLE IF EXISTS `tl_laasse10_assessment_question`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_assessment_question` ( `uid` bigint(20) NOT NULL auto_increment, `question_type` smallint(6) default NULL, `title` varchar(255) default NULL, `question` text, `sequence_id` int(11) default NULL, `default_grade` int(11) default '1', `penalty_factor` float default '0.1', `general_feedback` text, `feedback` text, `multiple_answers_allowed` tinyint(4) default '0', `feedback_on_correct` text, `feedback_on_partially_correct` text, `feedback_on_incorrect` text, `shuffle` tinyint(4) default NULL, `case_sensitive` tinyint(4) default NULL, `correct_answer` tinyint(4) default '0', `create_date` datetime default NULL, `create_by` bigint(20) default NULL, `assessment_uid` bigint(20) default NULL, `session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1720029621_F52D1F93758092FB` (`create_by`), KEY `FK_NEW_1720029621_F52D1F9330E79035` (`assessment_uid`), KEY `FK_NEW_1720029621_F52D1F93EC0D3147` (`session_uid`), CONSTRAINT `FK_NEW_1720029621_F52D1F93EC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_laasse10_session` (`uid`), CONSTRAINT `FK_NEW_1720029621_F52D1F9330E79035` FOREIGN KEY (`assessment_uid`) REFERENCES `tl_laasse10_assessment` (`uid`), CONSTRAINT `FK_NEW_1720029621_F52D1F93758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_laasse10_user` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_assessment_question` -- LOCK TABLES `tl_laasse10_assessment_question` WRITE; /*!40000 ALTER TABLE `tl_laasse10_assessment_question` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_assessment_question` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_assessment_result` -- DROP TABLE IF EXISTS `tl_laasse10_assessment_result`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_assessment_result` ( `uid` bigint(20) NOT NULL auto_increment, `assessment_uid` bigint(20) default NULL, `start_date` datetime default NULL, `finish_date` datetime default NULL, `user_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `maximum_grade` int(11) default NULL, `grade` float default NULL, PRIMARY KEY (`uid`), KEY `FK_tl_laasse10_assessment_result_2` (`user_uid`), KEY `FK_tl_laasse10_assessment_result_3` (`assessment_uid`), CONSTRAINT `FK_tl_laasse10_assessment_result_3` FOREIGN KEY (`assessment_uid`) REFERENCES `tl_laasse10_assessment` (`uid`), CONSTRAINT `FK_tl_laasse10_assessment_result_2` FOREIGN KEY (`user_uid`) REFERENCES `tl_laasse10_user` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_assessment_result` -- LOCK TABLES `tl_laasse10_assessment_result` WRITE; /*!40000 ALTER TABLE `tl_laasse10_assessment_result` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_assessment_result` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_assessment_unit` -- DROP TABLE IF EXISTS `tl_laasse10_assessment_unit`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_assessment_unit` ( `uid` bigint(20) NOT NULL auto_increment, `question_uid` bigint(20) default NULL, `sequence_id` int(11) default NULL, `multiplier` float default NULL, `unit` varchar(255) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `FK_tl_laasse10_assessment_unit_1` (`question_uid`), CONSTRAINT `FK_tl_laasse10_assessment_unit_1` FOREIGN KEY (`question_uid`) REFERENCES `tl_laasse10_assessment_question` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_assessment_unit` -- LOCK TABLES `tl_laasse10_assessment_unit` WRITE; /*!40000 ALTER TABLE `tl_laasse10_assessment_unit` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_assessment_unit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_attachment` -- DROP TABLE IF EXISTS `tl_laasse10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `assessment_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1720029621_1E7009430E79035` (`assessment_uid`), CONSTRAINT `FK_NEW_1720029621_1E7009430E79035` FOREIGN KEY (`assessment_uid`) REFERENCES `tl_laasse10_assessment` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_attachment` -- LOCK TABLES `tl_laasse10_attachment` WRITE; /*!40000 ALTER TABLE `tl_laasse10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_option_answer` -- DROP TABLE IF EXISTS `tl_laasse10_option_answer`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_option_answer` ( `uid` bigint(20) NOT NULL auto_increment, `question_result_uid` bigint(20) default NULL, `question_option_uid` bigint(20) default NULL, `answer_boolean` tinyint(1) default NULL, `answer_int` int(11) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `FK_tl_laasse10_option_answer_1` (`question_result_uid`), CONSTRAINT `FK_tl_laasse10_option_answer_1` FOREIGN KEY (`question_result_uid`) REFERENCES `tl_laasse10_question_result` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_option_answer` -- LOCK TABLES `tl_laasse10_option_answer` WRITE; /*!40000 ALTER TABLE `tl_laasse10_option_answer` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_option_answer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_question_option` -- DROP TABLE IF EXISTS `tl_laasse10_question_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_question_option` ( `uid` bigint(20) NOT NULL auto_increment, `question_uid` bigint(20) default NULL, `sequence_id` int(11) default NULL, `question` text, `option_string` text, `option_float` float default NULL, `accepted_error` float default NULL, `grade` float default NULL, `feedback` text, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `FK_tl_laasse10_question_option_1` (`question_uid`), CONSTRAINT `FK_tl_laasse10_question_option_1` FOREIGN KEY (`question_uid`) REFERENCES `tl_laasse10_assessment_question` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_question_option` -- LOCK TABLES `tl_laasse10_question_option` WRITE; /*!40000 ALTER TABLE `tl_laasse10_question_option` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_question_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_question_result` -- DROP TABLE IF EXISTS `tl_laasse10_question_result`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_question_result` ( `uid` bigint(20) NOT NULL auto_increment, `assessment_question_uid` bigint(20) default NULL, `result_uid` bigint(20) default NULL, `answer_string` text, `answer_float` float default NULL, `answer_boolean` tinyint(1) default NULL, `submitted_option_uid` bigint(20) default NULL, `mark` float default NULL, `penalty` float default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1720029621_693580A438BF8DFE` (`assessment_question_uid`), KEY `FK_tl_laasse10_question_result_1` (`result_uid`), CONSTRAINT `FK_tl_laasse10_question_result_1` FOREIGN KEY (`result_uid`) REFERENCES `tl_laasse10_assessment_result` (`uid`), CONSTRAINT `FK_NEW_1720029621_693580A438BF8DFE` FOREIGN KEY (`assessment_question_uid`) REFERENCES `tl_laasse10_assessment_question` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_question_result` -- LOCK TABLES `tl_laasse10_question_result` WRITE; /*!40000 ALTER TABLE `tl_laasse10_question_result` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_question_result` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_session` -- DROP TABLE IF EXISTS `tl_laasse10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `assessment_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1720029621_24AA78C530E79035` (`assessment_uid`), CONSTRAINT `FK_NEW_1720029621_24AA78C530E79035` FOREIGN KEY (`assessment_uid`) REFERENCES `tl_laasse10_assessment` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_session` -- LOCK TABLES `tl_laasse10_session` WRITE; /*!40000 ALTER TABLE `tl_laasse10_session` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laasse10_user` -- DROP TABLE IF EXISTS `tl_laasse10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laasse10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `session_finished` smallint(6) default NULL, `session_uid` bigint(20) default NULL, `assessment_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1720029621_30113BFCEC0D3147` (`session_uid`), KEY `FK_NEW_1720029621_30113BFC309ED320` (`assessment_uid`), CONSTRAINT `FK_NEW_1720029621_30113BFC309ED320` FOREIGN KEY (`assessment_uid`) REFERENCES `tl_laasse10_assessment` (`uid`), CONSTRAINT `FK_NEW_1720029621_30113BFCEC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_laasse10_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laasse10_user` -- LOCK TABLES `tl_laasse10_user` WRITE; /*!40000 ALTER TABLE `tl_laasse10_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laasse10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lachat11_attachment` -- DROP TABLE IF EXISTS `tl_lachat11_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lachat11_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `chat_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK9ED6CB2E1A3926E3` (`chat_uid`), CONSTRAINT `FK9ED6CB2E1A3926E3` FOREIGN KEY (`chat_uid`) REFERENCES `tl_lachat11_chat` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lachat11_attachment` -- LOCK TABLES `tl_lachat11_attachment` WRITE; /*!40000 ALTER TABLE `tl_lachat11_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lachat11_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lachat11_chat` -- DROP TABLE IF EXISTS `tl_lachat11_chat`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lachat11_chat` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `reflect_on_activity` bit(1) default NULL, `reflect_instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `filtering_enabled` bit(1) default NULL, `filter_keywords` text, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lachat11_chat` -- LOCK TABLES `tl_lachat11_chat` WRITE; /*!40000 ALTER TABLE `tl_lachat11_chat` DISABLE KEYS */; INSERT INTO `tl_lachat11_chat` VALUES (1,NULL,NULL,NULL,'Chat','Instructions',0x00,0x00,0x00,NULL,'','',0x00,0x00,5,0x00,NULL); /*!40000 ALTER TABLE `tl_lachat11_chat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lachat11_conditions` -- DROP TABLE IF EXISTS `tl_lachat11_conditions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lachat11_conditions` ( `condition_id` bigint(20) NOT NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`condition_id`), KEY `ChatConditionToChat` (`content_uid`), CONSTRAINT `ChatConditionInheritance` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `ChatConditionToChat` FOREIGN KEY (`content_uid`) REFERENCES `tl_lachat11_chat` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lachat11_conditions` -- LOCK TABLES `tl_lachat11_conditions` WRITE; /*!40000 ALTER TABLE `tl_lachat11_conditions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lachat11_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lachat11_message` -- DROP TABLE IF EXISTS `tl_lachat11_message`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lachat11_message` ( `uid` bigint(20) NOT NULL auto_increment, `chat_session_uid` bigint(20) NOT NULL, `from_user_uid` bigint(20) default NULL, `to_user_uid` bigint(20) default NULL, `type` varchar(255) default NULL, `body` text, `send_date` datetime default NULL, `hidden` bit(1) default NULL, PRIMARY KEY (`uid`), KEY `FKCC08C1DC2AF61E05` (`to_user_uid`), KEY `FKCC08C1DC9C8469FC` (`chat_session_uid`), KEY `FKCC08C1DCCF3BF9B6` (`from_user_uid`), CONSTRAINT `FKCC08C1DCCF3BF9B6` FOREIGN KEY (`from_user_uid`) REFERENCES `tl_lachat11_user` (`uid`), CONSTRAINT `FKCC08C1DC2AF61E05` FOREIGN KEY (`to_user_uid`) REFERENCES `tl_lachat11_user` (`uid`), CONSTRAINT `FKCC08C1DC9C8469FC` FOREIGN KEY (`chat_session_uid`) REFERENCES `tl_lachat11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lachat11_message` -- LOCK TABLES `tl_lachat11_message` WRITE; /*!40000 ALTER TABLE `tl_lachat11_message` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lachat11_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lachat11_session` -- DROP TABLE IF EXISTS `tl_lachat11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lachat11_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `chat_uid` bigint(20) default NULL, `jabber_room` varchar(250) default NULL, `room_created` bit(1) default NULL, PRIMARY KEY (`uid`), KEY `FK96E446B1A3926E3` (`chat_uid`), CONSTRAINT `FK96E446B1A3926E3` FOREIGN KEY (`chat_uid`) REFERENCES `tl_lachat11_chat` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lachat11_session` -- LOCK TABLES `tl_lachat11_session` WRITE; /*!40000 ALTER TABLE `tl_lachat11_session` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lachat11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lachat11_user` -- DROP TABLE IF EXISTS `tl_lachat11_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lachat11_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `jabber_id` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `jabber_nickname` varchar(255) default NULL, `chat_session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK4EB82169C8469FC` (`chat_session_uid`), CONSTRAINT `FK4EB82169C8469FC` FOREIGN KEY (`chat_session_uid`) REFERENCES `tl_lachat11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lachat11_user` -- LOCK TABLES `tl_lachat11_user` WRITE; /*!40000 ALTER TABLE `tl_lachat11_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lachat11_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_ladaco10_answer_options` -- DROP TABLE IF EXISTS `tl_ladaco10_answer_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_ladaco10_answer_options` ( `uid` bigint(20) NOT NULL auto_increment, `question_uid` bigint(20) default NULL, `sequence_num` tinyint(3) unsigned default '1', `answer_option` varchar(255) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `question_uid` (`question_uid`), CONSTRAINT `tl_ladaco10_answer_options_ibfk_1` FOREIGN KEY (`question_uid`) REFERENCES `tl_ladaco10_questions` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_ladaco10_answer_options` -- LOCK TABLES `tl_ladaco10_answer_options` WRITE; /*!40000 ALTER TABLE `tl_ladaco10_answer_options` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_ladaco10_answer_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_ladaco10_answers` -- DROP TABLE IF EXISTS `tl_ladaco10_answers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_ladaco10_answers` ( `uid` bigint(20) NOT NULL auto_increment, `user_uid` bigint(20) default NULL, `question_uid` bigint(20) default NULL, `record_id` smallint(5) unsigned default NULL, `answer` text, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `file_version_id` bigint(20) default NULL, `create_date` datetime default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `user_uid` (`user_uid`), KEY `question_uid` (`question_uid`), CONSTRAINT `AnswerToQuestion` FOREIGN KEY (`question_uid`) REFERENCES `tl_ladaco10_questions` (`uid`), CONSTRAINT `AnswerToUser` FOREIGN KEY (`user_uid`) REFERENCES `tl_ladaco10_users` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_ladaco10_answers` -- LOCK TABLES `tl_ladaco10_answers` WRITE; /*!40000 ALTER TABLE `tl_ladaco10_answers` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_ladaco10_answers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_ladaco10_attachments` -- DROP TABLE IF EXISTS `tl_ladaco10_attachments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_ladaco10_attachments` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `content_uid` (`content_uid`), CONSTRAINT `tl_ladaco10_attachments_ibfk_1` FOREIGN KEY (`content_uid`) REFERENCES `tl_ladaco10_contents` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_ladaco10_attachments` -- LOCK TABLES `tl_ladaco10_attachments` WRITE; /*!40000 ALTER TABLE `tl_ladaco10_attachments` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_ladaco10_attachments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_ladaco10_contents` -- DROP TABLE IF EXISTS `tl_ladaco10_contents`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_ladaco10_contents` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `run_offline` tinyint(4) default '0', `lock_on_finished` tinyint(4) default '0', `min_records` tinyint(3) unsigned default '0', `max_records` tinyint(3) unsigned default '0', `instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` tinyint(4) default '0', `define_later` tinyint(4) default '0', `content_id` bigint(20) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` tinyint(4) default NULL, `learner_entry_notify` tinyint(4) default '0', `record_submit_notify` tinyint(4) default '0', PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `create_by` (`create_by`), CONSTRAINT `DacoToUser` FOREIGN KEY (`create_by`) REFERENCES `tl_ladaco10_users` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_ladaco10_contents` -- LOCK TABLES `tl_ladaco10_contents` WRITE; /*!40000 ALTER TABLE `tl_ladaco10_contents` DISABLE KEYS */; INSERT INTO `tl_ladaco10_contents` VALUES (1,NULL,NULL,NULL,'Data Collection',0,0,0,0,'Instructions',NULL,NULL,0,0,14,NULL,0,0,0),(2,NULL,'2008-11-10 12:52:14',1,'Data Collection',0,0,0,0,'

\"\" Data Collection

\n

New to LAMS 2.2!

\n

The Data Collection tool allows Authors to create database style lists for Learners to populate.

\n

Each record list is highly flexible, and the activity can be configured to allow multiple records to exist for each learner.

','','',0,0,55,'',0,0,0),(3,NULL,'2008-11-10 12:52:14',2,'Data Collection',0,0,0,0,'

\"\" Data Collection

\n

New to LAMS 2.2!

\n

The Data Collection tool allows Authors to create database style lists for Learners to populate.

\n

Each record list is highly flexible, and the activity can be configured to allow multiple records to exist for each learner.

','','',0,0,101,'',0,0,0); /*!40000 ALTER TABLE `tl_ladaco10_contents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_ladaco10_questions` -- DROP TABLE IF EXISTS `tl_ladaco10_questions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_ladaco10_questions` ( `uid` bigint(20) NOT NULL auto_increment, `description` text, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, `is_required` tinyint(4) default '0', `question_type` tinyint(3) unsigned default NULL, `min_constraint` float default NULL, `max_constraint` float default NULL, `digits_decimal` tinyint(3) unsigned default NULL, `summary` tinyint(3) unsigned default NULL, `content_uid` bigint(20) default NULL, `session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `create_by` (`create_by`), KEY `content_uid` (`content_uid`), KEY `session_uid` (`session_uid`), CONSTRAINT `tl_ladaco10_questions_ibfk_1` FOREIGN KEY (`session_uid`) REFERENCES `tl_ladaco10_sessions` (`uid`), CONSTRAINT `QuestionToDaco` FOREIGN KEY (`content_uid`) REFERENCES `tl_ladaco10_contents` (`uid`), CONSTRAINT `QuestionToUser` FOREIGN KEY (`create_by`) REFERENCES `tl_ladaco10_users` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_ladaco10_questions` -- LOCK TABLES `tl_ladaco10_questions` WRITE; /*!40000 ALTER TABLE `tl_ladaco10_questions` DISABLE KEYS */; INSERT INTO `tl_ladaco10_questions` VALUES (1,'
What is your favourite colour?
',NULL,'2009-05-21 17:34:05',0,1,NULL,NULL,NULL,NULL,1,NULL),(2,'
What is your favourite colour?
',1,'2008-11-07 17:34:13',0,1,NULL,NULL,NULL,NULL,2,NULL),(3,'
What is your lucky number?
',1,'2008-11-10 12:49:56',0,3,NULL,NULL,NULL,NULL,2,NULL),(4,'
What is today\'s date?
',1,'2008-11-10 12:50:16',0,4,NULL,NULL,NULL,NULL,2,NULL),(5,'
What is your favourite colour?
',2,'2008-11-07 17:34:13',0,1,NULL,NULL,NULL,NULL,3,NULL),(6,'
What is your lucky number?
',2,'2008-11-10 12:49:56',0,3,NULL,NULL,NULL,NULL,3,NULL),(7,'
What is today\'s date?
',2,'2008-11-10 12:50:16',0,4,NULL,NULL,NULL,NULL,3,NULL); /*!40000 ALTER TABLE `tl_ladaco10_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_ladaco10_sessions` -- DROP TABLE IF EXISTS `tl_ladaco10_sessions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_ladaco10_sessions` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `content_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), UNIQUE KEY `session_id` (`session_id`), KEY `content_uid` (`content_uid`), CONSTRAINT `SessionToDaco` FOREIGN KEY (`content_uid`) REFERENCES `tl_ladaco10_contents` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_ladaco10_sessions` -- LOCK TABLES `tl_ladaco10_sessions` WRITE; /*!40000 ALTER TABLE `tl_ladaco10_sessions` DISABLE KEYS */; INSERT INTO `tl_ladaco10_sessions` VALUES (1,NULL,NULL,0,3,31,'Everybody learners'); /*!40000 ALTER TABLE `tl_ladaco10_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_ladaco10_users` -- DROP TABLE IF EXISTS `tl_ladaco10_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_ladaco10_users` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `session_finished` smallint(6) default NULL, `session_uid` bigint(20) default NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `session_uid` (`session_uid`), KEY `content_uid` (`content_uid`), CONSTRAINT `UserToDaco` FOREIGN KEY (`content_uid`) REFERENCES `tl_ladaco10_contents` (`uid`), CONSTRAINT `UserToSession` FOREIGN KEY (`session_uid`) REFERENCES `tl_ladaco10_sessions` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_ladaco10_users` -- LOCK TABLES `tl_ladaco10_users` WRITE; /*!40000 ALTER TABLE `tl_ladaco10_users` DISABLE KEYS */; INSERT INTO `tl_ladaco10_users` VALUES (1,5,'Test','One','test1',0,NULL,2),(2,5,'Test','One','test1',0,NULL,3); /*!40000 ALTER TABLE `tl_ladaco10_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laddim10_attachment` -- DROP TABLE IF EXISTS `tl_laddim10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laddim10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `dimdim_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `fk_laddim10_dimdim_attachment_to_dimdim` (`dimdim_uid`), CONSTRAINT `fk_laddim10_dimdim_attachment_to_dimdim` FOREIGN KEY (`dimdim_uid`) REFERENCES `tl_laddim10_dimdim` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laddim10_attachment` -- LOCK TABLES `tl_laddim10_attachment` WRITE; /*!40000 ALTER TABLE `tl_laddim10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laddim10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laddim10_config` -- DROP TABLE IF EXISTS `tl_laddim10_config`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laddim10_config` ( `uid` bigint(20) NOT NULL auto_increment, `config_key` varchar(255) default NULL, `config_value` varchar(255) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laddim10_config` -- LOCK TABLES `tl_laddim10_config` WRITE; /*!40000 ALTER TABLE `tl_laddim10_config` DISABLE KEYS */; INSERT INTO `tl_laddim10_config` VALUES (1,'server_url','http://172.20.100.253/'); /*!40000 ALTER TABLE `tl_laddim10_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laddim10_dimdim` -- DROP TABLE IF EXISTS `tl_laddim10_dimdim`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laddim10_dimdim` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `reflect_on_activity` bit(1) default NULL, `reflect_instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `max_attendee_mikes` int(11) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laddim10_dimdim` -- LOCK TABLES `tl_laddim10_dimdim` WRITE; /*!40000 ALTER TABLE `tl_laddim10_dimdim` DISABLE KEYS */; INSERT INTO `tl_laddim10_dimdim` VALUES (1,NULL,NULL,NULL,'Dimdim','Instructions',0x00,0x00,0x00,NULL,'','',0x00,0x00,17,1); /*!40000 ALTER TABLE `tl_laddim10_dimdim` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laddim10_session` -- DROP TABLE IF EXISTS `tl_laddim10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laddim10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `dimdim_uid` bigint(20) default NULL, `meeting_created` bit(1) default NULL, `meeting_key` varchar(255) default NULL, `max_attendee_mikes` int(11) default NULL, PRIMARY KEY (`uid`), KEY `fk_laddim10_dimdim_session_to_dimdim` (`dimdim_uid`), CONSTRAINT `fk_laddim10_dimdim_session_to_dimdim` FOREIGN KEY (`dimdim_uid`) REFERENCES `tl_laddim10_dimdim` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laddim10_session` -- LOCK TABLES `tl_laddim10_session` WRITE; /*!40000 ALTER TABLE `tl_laddim10_session` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laddim10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laddim10_user` -- DROP TABLE IF EXISTS `tl_laddim10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laddim10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `dimdim_session_uid` bigint(20) default NULL, `notebook_entry_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `fk_laddim10_dimdim_user_to_dimdim_session` (`dimdim_session_uid`), CONSTRAINT `fk_laddim10_dimdim_user_to_dimdim_session` FOREIGN KEY (`dimdim_session_uid`) REFERENCES `tl_laddim10_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laddim10_user` -- LOCK TABLES `tl_laddim10_user` WRITE; /*!40000 ALTER TABLE `tl_laddim10_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laddim10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_attachment` -- DROP TABLE IF EXISTS `tl_lafrum11_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `forum_uid` bigint(20) default NULL, `message_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK389AD9A2FE939F2A` (`message_uid`), KEY `FK389AD9A2131CE31E` (`forum_uid`), CONSTRAINT `FK389AD9A2131CE31E` FOREIGN KEY (`forum_uid`) REFERENCES `tl_lafrum11_forum` (`uid`), CONSTRAINT `FK389AD9A2FE939F2A` FOREIGN KEY (`message_uid`) REFERENCES `tl_lafrum11_message` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_attachment` -- LOCK TABLES `tl_lafrum11_attachment` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lafrum11_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_condition_topics` -- DROP TABLE IF EXISTS `tl_lafrum11_condition_topics`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_condition_topics` ( `condition_id` bigint(20) NOT NULL default '0', `topic_uid` bigint(20) NOT NULL default '0', PRIMARY KEY (`condition_id`,`topic_uid`), KEY `ForumConditionQuestionToForumQuestion` (`topic_uid`), CONSTRAINT `ForumConditionQuestionToForumCondition` FOREIGN KEY (`condition_id`) REFERENCES `tl_lafrum11_conditions` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `ForumConditionQuestionToForumQuestion` FOREIGN KEY (`topic_uid`) REFERENCES `tl_lafrum11_message` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_condition_topics` -- LOCK TABLES `tl_lafrum11_condition_topics` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_condition_topics` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lafrum11_condition_topics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_conditions` -- DROP TABLE IF EXISTS `tl_lafrum11_conditions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_conditions` ( `condition_id` bigint(20) NOT NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`condition_id`), KEY `ForumConditionToForum` (`content_uid`), CONSTRAINT `ForumConditionInheritance` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `ForumConditionToForum` FOREIGN KEY (`content_uid`) REFERENCES `tl_lafrum11_forum` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_conditions` -- LOCK TABLES `tl_lafrum11_conditions` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_conditions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lafrum11_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_forum` -- DROP TABLE IF EXISTS `tl_lafrum11_forum`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_forum` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `allow_anonym` smallint(6) default NULL, `run_offline` smallint(6) default NULL, `lock_on_finished` smallint(6) default NULL, `instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` smallint(6) default NULL, `define_later` smallint(6) default NULL, `content_id` bigint(20) default NULL, `allow_edit` smallint(6) default NULL, `allow_rich_editor` smallint(6) default NULL, `allow_new_topic` smallint(6) default NULL, `allow_upload` smallint(6) default NULL, `maximum_reply` int(11) default NULL, `minimum_reply` int(11) default NULL, `limited_of_chars` int(11) default NULL, `limited_input_flag` smallint(6) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` smallint(6) default NULL, `mark_release_notify` tinyint(4) default '0', PRIMARY KEY (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `FK87917942E42F4351` (`create_by`), CONSTRAINT `FK87917942E42F4351` FOREIGN KEY (`create_by`) REFERENCES `tl_lafrum11_forum_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_forum` -- LOCK TABLES `tl_lafrum11_forum` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_forum` DISABLE KEYS */; INSERT INTO `tl_lafrum11_forum` VALUES (1,NULL,NULL,NULL,'Forum',0,0,0,'Instructions',NULL,NULL,0,0,1,1,0,1,0,1,0,5000,1,NULL,0,0),(2,'2008-04-11 16:03:30','2009-05-21 17:38:09',1,'LAMS Resources Forum',0,0,0,'
These forum messages relate to the resources above.
','','',0,0,45,1,0,1,0,0,0,5000,1,'',0,0),(3,'2008-04-11 16:03:30','2009-05-21 17:39:12',1,'LAMS Resources Forum',0,0,0,'
These forum messages relate to the resources above.
','','',0,0,86,1,0,1,0,0,0,5000,1,'',0,0); /*!40000 ALTER TABLE `tl_lafrum11_forum` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_forum_user` -- DROP TABLE IF EXISTS `tl_lafrum11_forum_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_forum_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `session_id` bigint(20) default NULL, `login_name` varchar(255) default NULL, `session_finished` smallint(6) default NULL, PRIMARY KEY (`uid`), KEY `FK7B83A4A85F0116B6` (`session_id`), CONSTRAINT `FK7B83A4A85F0116B6` FOREIGN KEY (`session_id`) REFERENCES `tl_lafrum11_tool_session` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_forum_user` -- LOCK TABLES `tl_lafrum11_forum_user` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_forum_user` DISABLE KEYS */; INSERT INTO `tl_lafrum11_forum_user` VALUES (1,5,'Test','One',NULL,'test1',0); /*!40000 ALTER TABLE `tl_lafrum11_forum_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_message` -- DROP TABLE IF EXISTS `tl_lafrum11_message`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_message` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `last_reply_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `modified_by` bigint(20) default NULL, `subject` varchar(255) default NULL, `body` text, `is_authored` smallint(6) default NULL, `is_anonymous` smallint(6) default NULL, `forum_session_uid` bigint(20) default NULL, `parent_uid` bigint(20) default NULL, `forum_uid` bigint(20) default NULL, `reply_number` int(11) default NULL, `hide_flag` smallint(6) default NULL, `report_id` bigint(20) default NULL, `authored_parent_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK4A6067E8E42F4351` (`create_by`), KEY `FK4A6067E897F0DB46` (`report_id`), KEY `FK4A6067E8131CE31E` (`forum_uid`), KEY `FK4A6067E824089E4D` (`parent_uid`), KEY `FK4A6067E89357B45B` (`forum_session_uid`), KEY `FK4A6067E8647A7264` (`modified_by`), KEY `IX_msg_auth_parent` (`authored_parent_uid`), CONSTRAINT `FK4A6067E8131CE31E` FOREIGN KEY (`forum_uid`) REFERENCES `tl_lafrum11_forum` (`uid`), CONSTRAINT `FK4A6067E824089E4D` FOREIGN KEY (`parent_uid`) REFERENCES `tl_lafrum11_message` (`uid`), CONSTRAINT `FK4A6067E8647A7264` FOREIGN KEY (`modified_by`) REFERENCES `tl_lafrum11_forum_user` (`uid`), CONSTRAINT `FK4A6067E89357B45B` FOREIGN KEY (`forum_session_uid`) REFERENCES `tl_lafrum11_tool_session` (`uid`), CONSTRAINT `FK4A6067E897F0DB46` FOREIGN KEY (`report_id`) REFERENCES `tl_lafrum11_report` (`uid`), CONSTRAINT `FK4A6067E8E42F4351` FOREIGN KEY (`create_by`) REFERENCES `tl_lafrum11_forum_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_message` -- LOCK TABLES `tl_lafrum11_message` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_message` DISABLE KEYS */; INSERT INTO `tl_lafrum11_message` VALUES (1,'2009-05-21 17:32:48','2009-05-21 17:32:48','2009-05-21 17:32:48',NULL,NULL,'Topic Heading','Topic message',1,0,NULL,NULL,1,0,0,NULL,NULL),(2,'2008-06-06 12:12:18','2008-11-14 14:31:47','2009-05-21 17:38:09',1,NULL,'2007 Conference','
What were the best things about the 2007 conference?
\n
Which presentations did you get the most out of?
',1,0,NULL,NULL,2,0,0,NULL,NULL),(3,'2008-06-06 12:12:18','2008-11-14 14:31:47','2009-05-21 17:38:09',1,NULL,'2008 Conference','
What do you hope to see at the upcoming 2008 Conference in Cadiz?
',1,0,NULL,NULL,2,0,0,NULL,NULL),(4,'2008-06-06 12:12:18','2009-05-21 17:39:12','2009-05-21 17:39:12',1,NULL,'2008 Conference','
What do you hope to see at the upcoming 2008 Conference in Cadiz?
',1,0,NULL,NULL,3,0,0,NULL,NULL),(5,'2008-06-06 12:12:18','2009-05-21 17:39:12','2009-05-21 17:39:12',1,NULL,'2007 Conference','
What were the best things about the 2007 conference?
\n
Which presentations did you get the most out of?
',1,0,NULL,NULL,3,0,0,NULL,NULL),(6,'2008-06-06 12:12:18','2009-05-21 17:39:12','2009-05-21 17:39:13',1,NULL,'2008 Conference','
What do you hope to see at the upcoming 2008 Conference in Cadiz?
',1,0,1,NULL,3,0,0,NULL,4),(7,'2008-06-06 12:12:18','2009-05-21 17:39:12','2009-05-21 17:39:13',1,NULL,'2007 Conference','
What were the best things about the 2007 conference?
\n
Which presentations did you get the most out of?
',1,0,1,NULL,3,0,0,NULL,5); /*!40000 ALTER TABLE `tl_lafrum11_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_message_seq` -- DROP TABLE IF EXISTS `tl_lafrum11_message_seq`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_message_seq` ( `uid` bigint(20) NOT NULL auto_increment, `root_message_uid` bigint(20) default NULL, `message_uid` bigint(20) default NULL, `message_level` smallint(6) default NULL, PRIMARY KEY (`uid`), KEY `FKD2C71F88FE939F2A` (`message_uid`), KEY `FKD2C71F8845213B4D` (`root_message_uid`), CONSTRAINT `FKD2C71F8845213B4D` FOREIGN KEY (`root_message_uid`) REFERENCES `tl_lafrum11_message` (`uid`), CONSTRAINT `FKD2C71F88FE939F2A` FOREIGN KEY (`message_uid`) REFERENCES `tl_lafrum11_message` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_message_seq` -- LOCK TABLES `tl_lafrum11_message_seq` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_message_seq` DISABLE KEYS */; INSERT INTO `tl_lafrum11_message_seq` VALUES (1,2,2,0),(2,3,3,0),(3,4,4,0),(4,5,5,0),(5,6,6,0),(6,7,7,0); /*!40000 ALTER TABLE `tl_lafrum11_message_seq` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_report` -- DROP TABLE IF EXISTS `tl_lafrum11_report`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_report` ( `uid` bigint(20) NOT NULL auto_increment, `comment` text, `release_date` datetime default NULL, `mark` float default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_report` -- LOCK TABLES `tl_lafrum11_report` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_report` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lafrum11_report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_timestamp` -- DROP TABLE IF EXISTS `tl_lafrum11_timestamp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_timestamp` ( `uid` bigint(20) NOT NULL auto_increment, `message_uid` bigint(20) NOT NULL, `timestamp_date` datetime NOT NULL, `forum_user_uid` bigint(20) NOT NULL, PRIMARY KEY (`uid`), UNIQUE KEY `uid` (`uid`), KEY `message_uid` (`message_uid`), KEY `forum_user_uid` (`forum_user_uid`), KEY `ForumUserFK` (`forum_user_uid`), KEY `MessageFK` (`message_uid`), CONSTRAINT `MessageFK` FOREIGN KEY (`message_uid`) REFERENCES `tl_lafrum11_message` (`uid`), CONSTRAINT `ForumUserFK` FOREIGN KEY (`forum_user_uid`) REFERENCES `tl_lafrum11_forum_user` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_timestamp` -- LOCK TABLES `tl_lafrum11_timestamp` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_timestamp` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lafrum11_timestamp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lafrum11_tool_session` -- DROP TABLE IF EXISTS `tl_lafrum11_tool_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lafrum11_tool_session` ( `uid` bigint(20) NOT NULL auto_increment, `version` int(11) NOT NULL, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `mark_released` smallint(6) default NULL, `forum_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), KEY `FK5A04D7AE131CE31E` (`forum_uid`), CONSTRAINT `FK5A04D7AE131CE31E` FOREIGN KEY (`forum_uid`) REFERENCES `tl_lafrum11_forum` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lafrum11_tool_session` -- LOCK TABLES `tl_lafrum11_tool_session` WRITE; /*!40000 ALTER TABLE `tl_lafrum11_tool_session` DISABLE KEYS */; INSERT INTO `tl_lafrum11_tool_session` VALUES (1,0,NULL,NULL,1,0,3,23,'Everybody learners'); /*!40000 ALTER TABLE `tl_lafrum11_tool_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lagmap10_attachment` -- DROP TABLE IF EXISTS `tl_lagmap10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lagmap10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `gmap_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKBA2ECCB274028C80` (`gmap_uid`), CONSTRAINT `FKBA2ECCB274028C80` FOREIGN KEY (`gmap_uid`) REFERENCES `tl_lagmap10_gmap` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lagmap10_attachment` -- LOCK TABLES `tl_lagmap10_attachment` WRITE; /*!40000 ALTER TABLE `tl_lagmap10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lagmap10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lagmap10_configuration` -- DROP TABLE IF EXISTS `tl_lagmap10_configuration`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lagmap10_configuration` ( `uid` bigint(20) NOT NULL auto_increment, `config_key` varchar(30) default NULL, `config_value` varchar(255) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `config_key` (`config_key`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lagmap10_configuration` -- LOCK TABLES `tl_lagmap10_configuration` WRITE; /*!40000 ALTER TABLE `tl_lagmap10_configuration` DISABLE KEYS */; INSERT INTO `tl_lagmap10_configuration` VALUES (1,'GmapKey','ABQIAAAAvPAE96y1iioFQOnrP1RCBxQ3ZLSPwrKlL-Fn7FdXNTuNedFYMRT30phEMjEwUhQPccHtJ9JNU1mknQ'); /*!40000 ALTER TABLE `tl_lagmap10_configuration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lagmap10_gmap` -- DROP TABLE IF EXISTS `tl_lagmap10_gmap`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lagmap10_gmap` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `allow_edit_markers` bit(1) default NULL, `show_all_markers` bit(1) default NULL, `limit_markers` bit(1) default NULL, `max_markers` int(11) default NULL, `allow_zoom` bit(1) default NULL, `allow_terrain` bit(1) default NULL, `allow_satellite` bit(1) default NULL, `allow_hybrid` bit(1) default NULL, `map_center_latitude` double default NULL, `map_center_longitude` double default NULL, `map_zoom` int(11) default NULL, `map_type` varchar(20) default NULL, `reflect_on_activity` bit(1) default NULL, `reflect_instructions` text, `default_geocoder_address` varchar(255) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lagmap10_gmap` -- LOCK TABLES `tl_lagmap10_gmap` WRITE; /*!40000 ALTER TABLE `tl_lagmap10_gmap` DISABLE KEYS */; INSERT INTO `tl_lagmap10_gmap` VALUES (1,NULL,NULL,NULL,'Gmap','Instructions',0x00,0x00,'','',0x00,0x00,12,0x01,0x01,0x00,1,0x01,0x00,0x01,0x01,-33.774322,151.111988,13,'G_NORMAL_MAP',0x00,'','Macquarie University, Sydney NSW'),(2,'2008-11-14 14:32:00','2008-11-10 12:52:48',1,'Google Maps Demonstration','
\n
\"\" Google Maps
\n

New to LAMS 2.2!

\n
The Google Maps Activity allows sequence Authors to create maps or satellite images with annotated place markers.
\nDuring the running of the activity, Learners can add their own markers to the map and view markers placed by other learners.
\n
 
\n
NOTE: For the Google Maps activity to function, an API key must be added to your LAMS server.  Instructions to do this are here.
\n
 
\n
\n
  
\n

\n
\n
',0x00,0x00,'','',0x00,0x00,51,0x01,0x01,0x00,0,0x01,0x00,0x01,0x01,-33.7746794632346,151.11565053463,17,'G_SATELLITE_MAP',0x00,'','Macquarie University, Sydney NSW'),(3,'2009-05-21 17:39:12','2008-11-10 12:52:48',1,'Google Maps Demonstration','
\n
\"\" Google Maps
\n

New to LAMS 2.2!

\n
The Google Maps Activity allows sequence Authors to create maps or satellite images with annotated place markers.
\nDuring the running of the activity, Learners can add their own markers to the map and view markers placed by other learners.
\n
 
\n
NOTE: For the Google Maps activity to function, an API key must be added to your LAMS server.  Instructions to do this are here.
\n
 
\n
\n
  
\n

\n
\n
',0x00,0x00,'','',0x00,0x00,89,0x01,0x01,0x00,0,0x01,0x00,0x01,0x01,-33.7746794632346,151.11565053463,17,'G_SATELLITE_MAP',0x00,'','Macquarie University, Sydney NSW'); /*!40000 ALTER TABLE `tl_lagmap10_gmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lagmap10_marker` -- DROP TABLE IF EXISTS `tl_lagmap10_marker`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lagmap10_marker` ( `uid` bigint(20) NOT NULL auto_increment, `longitude` double default NULL, `latitude` double default NULL, `info_window_message` text, `create_date` datetime default NULL, `update_date` datetime default NULL, `is_authored` bit(1) default NULL, `gmap_uid` bigint(20) default NULL, `title` varchar(55) default NULL, `created_by` bigint(20) default NULL, `updated_by` bigint(20) default NULL, `gmap_session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK10F2274974028C80` (`gmap_uid`), KEY `FK10F22749C5F056D9` (`gmap_session_uid`), KEY `FK10F22749EF5F6920` (`updated_by`), KEY `FK10F22749529F7FD3` (`created_by`), CONSTRAINT `FK10F22749529F7FD3` FOREIGN KEY (`created_by`) REFERENCES `tl_lagmap10_user` (`uid`), CONSTRAINT `FK10F2274974028C80` FOREIGN KEY (`gmap_uid`) REFERENCES `tl_lagmap10_gmap` (`uid`), CONSTRAINT `FK10F22749C5F056D9` FOREIGN KEY (`gmap_session_uid`) REFERENCES `tl_lagmap10_session` (`uid`), CONSTRAINT `FK10F22749EF5F6920` FOREIGN KEY (`updated_by`) REFERENCES `tl_lagmap10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lagmap10_marker` -- LOCK TABLES `tl_lagmap10_marker` WRITE; /*!40000 ALTER TABLE `tl_lagmap10_marker` DISABLE KEYS */; INSERT INTO `tl_lagmap10_marker` VALUES (1,151.115612983704,-33.7751253687174,'Macquarie%20E-Learning%20Centre%20of%20Excellence','2008-11-10 12:39:46','2008-11-10 12:39:46',0x01,2,'MELCOE',NULL,NULL,NULL),(2,151.115612983704,-33.7751253687174,'Macquarie%20E-Learning%20Centre%20of%20Excellence','2008-11-10 12:39:46','2008-11-10 12:39:46',0x01,3,'MELCOE',NULL,NULL,NULL),(3,151.115612983704,-33.7751253687174,'Macquarie%20E-Learning%20Centre%20of%20Excellence','2008-11-10 12:39:46','2008-11-10 12:39:46',0x01,3,'MELCOE',NULL,NULL,1); /*!40000 ALTER TABLE `tl_lagmap10_marker` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lagmap10_session` -- DROP TABLE IF EXISTS `tl_lagmap10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lagmap10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `gmap_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK519D516774028C80` (`gmap_uid`), CONSTRAINT `FK519D516774028C80` FOREIGN KEY (`gmap_uid`) REFERENCES `tl_lagmap10_gmap` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lagmap10_session` -- LOCK TABLES `tl_lagmap10_session` WRITE; /*!40000 ALTER TABLE `tl_lagmap10_session` DISABLE KEYS */; INSERT INTO `tl_lagmap10_session` VALUES (1,NULL,NULL,NULL,9,'Everybody learners',3); /*!40000 ALTER TABLE `tl_lagmap10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lagmap10_user` -- DROP TABLE IF EXISTS `tl_lagmap10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lagmap10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `gmap_session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK7CB3F69AC5F056D9` (`gmap_session_uid`), CONSTRAINT `FK7CB3F69AC5F056D9` FOREIGN KEY (`gmap_session_uid`) REFERENCES `tl_lagmap10_session` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lagmap10_user` -- LOCK TABLES `tl_lagmap10_user` WRITE; /*!40000 ALTER TABLE `tl_lagmap10_user` DISABLE KEYS */; INSERT INTO `tl_lagmap10_user` VALUES (1,5,'Test','test1','One',0x00,NULL); /*!40000 ALTER TABLE `tl_lagmap10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_attachment` -- DROP TABLE IF EXISTS `tl_laimag10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_attachment` ( `attachment_uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `imageGallery_uid` bigint(20) default NULL, PRIMARY KEY (`attachment_uid`), KEY `FK_NEW_1821149711_1E7009430E79035` (`imageGallery_uid`), CONSTRAINT `FK_NEW_1821149711_1E7009430E79035` FOREIGN KEY (`imageGallery_uid`) REFERENCES `tl_laimag10_imageGallery` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_attachment` -- LOCK TABLES `tl_laimag10_attachment` WRITE; /*!40000 ALTER TABLE `tl_laimag10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laimag10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_configuration` -- DROP TABLE IF EXISTS `tl_laimag10_configuration`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_configuration` ( `uid` bigint(20) NOT NULL auto_increment, `config_key` varchar(30) default NULL, `config_value` varchar(255) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `config_key` (`config_key`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_configuration` -- LOCK TABLES `tl_laimag10_configuration` WRITE; /*!40000 ALTER TABLE `tl_laimag10_configuration` DISABLE KEYS */; INSERT INTO `tl_laimag10_configuration` VALUES (1,'mediumImageDimensions','640'),(2,'thumbnailImageDimensions','100'); /*!40000 ALTER TABLE `tl_laimag10_configuration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_imageGallery` -- DROP TABLE IF EXISTS `tl_laimag10_imageGallery`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_imageGallery` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `run_offline` tinyint(4) default NULL, `lock_on_finished` tinyint(4) default NULL, `instructions` text, `next_image_title` bigint(20) default NULL, `online_instructions` text, `offline_instructions` text, `content_in_use` tinyint(4) default NULL, `define_later` tinyint(4) default NULL, `content_id` bigint(20) default NULL, `allow_comment_images` tinyint(4) default NULL, `allow_share_images` tinyint(4) default NULL, `allow_vote` tinyint(4) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` smallint(6) default NULL, `allow_rank` tinyint(4) default NULL, `image_submit_notify` tinyint(4) default '0', PRIMARY KEY (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `FK_NEW_1821149711_89093BF758092FB` (`create_by`), CONSTRAINT `FK_NEW_1821149711_89093BF758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_laimag10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_imageGallery` -- LOCK TABLES `tl_laimag10_imageGallery` WRITE; /*!40000 ALTER TABLE `tl_laimag10_imageGallery` DISABLE KEYS */; INSERT INTO `tl_laimag10_imageGallery` VALUES (1,NULL,NULL,NULL,'Image Gallery',0,0,'Instructions ',1,NULL,NULL,0,0,16,0,0,0,NULL,0,0,0),(2,NULL,'2009-05-14 20:33:49',1,'Image Gallery',0,0,'

The New Image Gallery Activity

\n
\"\"The new Image Gallery activity allows authors, monitors and learners to view and upload images to the LAMS server, then review or rate them with their peers.
\n 
\n

Have a go at uploading an Image in this activity (select Add New Image on the bottom-right).
\nYou can also view, rate and comment on the images already uploaded.

\n
All of these images are sourced from flickr under CC-by-nc-sa.
\n 
\n
\n
 
\nWhen you are finished, click \'Next Activity.\'
\n 
\n
 
',1,'','',0,0,26,0,0,0,'',0,0,0),(3,NULL,'2009-05-14 20:33:49',2,'Image Gallery',0,0,'

The New Image Gallery Activity

\n
\"\"The new Image Gallery activity allows authors, monitors and learners to view and upload images to the LAMS server, then review or rate them with their peers.
\n 
\n

Have a go at uploading an Image in this activity (select Add New Image on the bottom-right).
\nYou can also view, rate and comment on the images already uploaded.

\n
All of these images are sourced from flickr under CC-by-nc-sa.
\n 
\n
\n
 
\nWhen you are finished, click \'Next Activity.\'
\n 
\n
 
',1,'','',0,0,70,0,0,0,'',0,0,0); /*!40000 ALTER TABLE `tl_laimag10_imageGallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_imageGallery_item` -- DROP TABLE IF EXISTS `tl_laimag10_imageGallery_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_imageGallery_item` ( `uid` bigint(20) NOT NULL auto_increment, `description` text, `title` varchar(255) default NULL, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, `create_by_author` tinyint(4) default NULL, `sequence_id` int(11) default NULL, `is_hide` tinyint(4) default NULL, `imageGallery_uid` bigint(20) default NULL, `session_uid` bigint(20) default NULL, `original_file_uuid` bigint(20) default NULL, `original_image_width` int(11) default NULL, `original_image_height` int(11) default NULL, `medium_file_uuid` bigint(20) default NULL, `medium_image_width` int(11) default NULL, `medium_image_height` int(11) default NULL, `thumbnail_file_uuid` bigint(20) default NULL, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1821149711_F52D1F93758092FB` (`create_by`), KEY `FK_NEW_1821149711_F52D1F9330E79035` (`imageGallery_uid`), KEY `FK_NEW_1821149711_F52D1F93EC0D3147` (`session_uid`), CONSTRAINT `FK_NEW_1821149711_F52D1F93EC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_laimag10_session` (`uid`), CONSTRAINT `FK_NEW_1821149711_F52D1F9330E79035` FOREIGN KEY (`imageGallery_uid`) REFERENCES `tl_laimag10_imageGallery` (`uid`), CONSTRAINT `FK_NEW_1821149711_F52D1F93758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_laimag10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_imageGallery_item` -- LOCK TABLES `tl_laimag10_imageGallery_item` WRITE; /*!40000 ALTER TABLE `tl_laimag10_imageGallery_item` DISABLE KEYS */; INSERT INTO `tl_laimag10_imageGallery_item` VALUES (1,'
By stuant63
','\"Tangled Technology\"',1,'2009-05-14 20:25:57',1,3,0,2,NULL,1,500,266,2,500,266,3,1,'image/jpeg','tangled.jpg'),(2,'
by Rutty
','\"Screen Technology\"',1,'2009-05-14 20:24:21',1,1,0,2,NULL,7,500,290,8,500,290,9,1,'image/jpeg','screen_technology.jpg'),(3,'
By iLoveButter
','\"Technology Then & Now',1,'2009-05-14 20:25:11',1,2,0,2,NULL,4,500,500,5,500,500,6,1,'image/jpeg','tech then and now.jpg'),(4,'
By iLoveButter
','\"Technology Then & Now',2,'2009-05-14 20:25:11',1,2,0,3,NULL,4,500,500,5,500,500,6,1,'image/jpeg','tech then and now.jpg'),(5,'
by Rutty
','\"Screen Technology\"',2,'2009-05-14 20:24:21',1,1,0,3,NULL,7,500,290,8,500,290,9,1,'image/jpeg','screen_technology.jpg'),(6,'
By stuant63
','\"Tangled Technology\"',2,'2009-05-14 20:25:57',1,3,0,3,NULL,1,500,266,2,500,266,3,1,'image/jpeg','tangled.jpg'); /*!40000 ALTER TABLE `tl_laimag10_imageGallery_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_image_comment` -- DROP TABLE IF EXISTS `tl_laimag10_image_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_image_comment` ( `uid` bigint(20) NOT NULL auto_increment, `comment` text, `imageGallery_item_uid` bigint(20) default NULL, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, PRIMARY KEY (`uid`), KEY `FK_tl_laimag10_image_comment_3` (`imageGallery_item_uid`), KEY `FK_tl_laimag10_image_comment_2` (`create_by`), CONSTRAINT `FK_tl_laimag10_image_comment_2` FOREIGN KEY (`create_by`) REFERENCES `tl_laimag10_user` (`uid`), CONSTRAINT `FK_tl_laimag10_image_comment_3` FOREIGN KEY (`imageGallery_item_uid`) REFERENCES `tl_laimag10_imageGallery_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_image_comment` -- LOCK TABLES `tl_laimag10_image_comment` WRITE; /*!40000 ALTER TABLE `tl_laimag10_image_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laimag10_image_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_image_rating` -- DROP TABLE IF EXISTS `tl_laimag10_image_rating`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_image_rating` ( `uid` bigint(20) NOT NULL auto_increment, `rating` int(11) default NULL, `imageGallery_item_uid` bigint(20) default NULL, `create_by` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_tl_laimag10_image_rating_3` (`imageGallery_item_uid`), KEY `FK_tl_laimag10_image_rating_2` (`create_by`), CONSTRAINT `FK_tl_laimag10_image_rating_2` FOREIGN KEY (`create_by`) REFERENCES `tl_laimag10_user` (`uid`), CONSTRAINT `FK_tl_laimag10_image_rating_3` FOREIGN KEY (`imageGallery_item_uid`) REFERENCES `tl_laimag10_imageGallery_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_image_rating` -- LOCK TABLES `tl_laimag10_image_rating` WRITE; /*!40000 ALTER TABLE `tl_laimag10_image_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laimag10_image_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_image_vote` -- DROP TABLE IF EXISTS `tl_laimag10_image_vote`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_image_vote` ( `uid` bigint(20) NOT NULL auto_increment, `is_voted` tinyint(4) default NULL, `imageGallery_item_uid` bigint(20) default NULL, `create_by` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_tl_laimag10_image_vote_3` (`imageGallery_item_uid`), KEY `FK_tl_laimag10_image_vote_2` (`create_by`), CONSTRAINT `FK_tl_laimag10_image_vote_2` FOREIGN KEY (`create_by`) REFERENCES `tl_laimag10_user` (`uid`), CONSTRAINT `FK_tl_laimag10_image_vote_3` FOREIGN KEY (`imageGallery_item_uid`) REFERENCES `tl_laimag10_imageGallery_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_image_vote` -- LOCK TABLES `tl_laimag10_image_vote` WRITE; /*!40000 ALTER TABLE `tl_laimag10_image_vote` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laimag10_image_vote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_item_log` -- DROP TABLE IF EXISTS `tl_laimag10_item_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_item_log` ( `uid` bigint(20) NOT NULL auto_increment, `access_date` datetime default NULL, `imageGallery_item_uid` bigint(20) default NULL, `user_uid` bigint(20) default NULL, `complete` tinyint(4) default NULL, `session_id` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1821149711_693580A438BF8DFE` (`imageGallery_item_uid`), KEY `FK_NEW_1821149711_693580A441F9365D` (`user_uid`), CONSTRAINT `FK_NEW_1821149711_693580A441F9365D` FOREIGN KEY (`user_uid`) REFERENCES `tl_laimag10_user` (`uid`), CONSTRAINT `FK_NEW_1821149711_693580A438BF8DFE` FOREIGN KEY (`imageGallery_item_uid`) REFERENCES `tl_laimag10_imageGallery_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_item_log` -- LOCK TABLES `tl_laimag10_item_log` WRITE; /*!40000 ALTER TABLE `tl_laimag10_item_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laimag10_item_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_session` -- DROP TABLE IF EXISTS `tl_laimag10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `imageGallery_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1821149711_24AA78C530E79035` (`imageGallery_uid`), CONSTRAINT `FK_NEW_1821149711_24AA78C530E79035` FOREIGN KEY (`imageGallery_uid`) REFERENCES `tl_laimag10_imageGallery` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_session` -- LOCK TABLES `tl_laimag10_session` WRITE; /*!40000 ALTER TABLE `tl_laimag10_session` DISABLE KEYS */; INSERT INTO `tl_laimag10_session` VALUES (1,NULL,NULL,0,3,3,'Everybody learners'); /*!40000 ALTER TABLE `tl_laimag10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laimag10_user` -- DROP TABLE IF EXISTS `tl_laimag10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laimag10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `session_finished` smallint(6) default NULL, `session_uid` bigint(20) default NULL, `imageGallery_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_1821149711_30113BFCEC0D3147` (`session_uid`), KEY `FK_NEW_1821149711_30113BFC309ED320` (`imageGallery_uid`), CONSTRAINT `FK_NEW_1821149711_30113BFC309ED320` FOREIGN KEY (`imageGallery_uid`) REFERENCES `tl_laimag10_imageGallery` (`uid`), CONSTRAINT `FK_NEW_1821149711_30113BFCEC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_laimag10_session` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laimag10_user` -- LOCK TABLES `tl_laimag10_user` WRITE; /*!40000 ALTER TABLE `tl_laimag10_user` DISABLE KEYS */; INSERT INTO `tl_laimag10_user` VALUES (1,5,'Test','One','test1',0,NULL,2),(2,5,'Test','One','test1',0,NULL,3); /*!40000 ALTER TABLE `tl_laimag10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamc11_content` -- DROP TABLE IF EXISTS `tl_lamc11_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamc11_content` ( `uid` bigint(20) NOT NULL auto_increment, `content_id` bigint(20) NOT NULL, `title` text, `instructions` text, `creation_date` datetime default NULL, `update_date` datetime default NULL, `reflect` tinyint(1) NOT NULL default '0', `questions_sequenced` tinyint(1) NOT NULL default '0', `created_by` bigint(20) NOT NULL default '0', `run_offline` tinyint(1) NOT NULL default '0', `define_later` tinyint(1) NOT NULL default '0', `offline_instructions` text, `online_instructions` text, `content_in_use` tinyint(1) NOT NULL default '0', `retries` tinyint(1) NOT NULL default '0', `pass_mark` int(11) default NULL, `show_report` tinyint(1) NOT NULL default '0', `reflectionSubject` text, `showMarks` tinyint(1) NOT NULL default '0', `randomize` tinyint(1) NOT NULL default '0', `displayAnswers` tinyint(1) NOT NULL default '1', PRIMARY KEY (`uid`), UNIQUE KEY `UQ_tl_lamc11_content_1` (`content_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamc11_content` -- LOCK TABLES `tl_lamc11_content` WRITE; /*!40000 ALTER TABLE `tl_lamc11_content` DISABLE KEYS */; INSERT INTO `tl_lamc11_content` VALUES (1,22,'MCQ','Instructions','2009-05-21 17:34:53',NULL,0,0,1,0,0,'','',0,0,0,0,NULL,0,0,1),(2,42,'My Lost Beach Ball','

This is a demonstration Multiple Choice Quiz.

\n
As you can see, LAMS provides a space for Instructions and Comments (here)
\nand lists all the questions and choices for the activity below.
\n
 
\n
\n
 
\n

Read the short story below and answer the three questions:

\n

\n
\n
One day my Dad bought me a new red beach ball.
\n
\n
My brother and I took it down to the beach to play with.
\n
\n
We were playing Soccer when he kicked the ball into the water, accidentally.
\n
\n
The ball floated out to sea before we could rescue it.
\n
 
\n
\n
\n
HINT:  The correct answers are marked with an asterisk!
',NULL,'2008-04-11 15:37:41',0,0,5,0,0,'','',0,1,3,0,'',1,1,1),(3,91,'My Lost Beach Ball','

This is a demonstration Multiple Choice Quiz.

\n
As you can see, LAMS provides a space for Instructions and Comments (here)
\nand lists all the questions and choices for the activity below.
\n
 
\n
\n
 
\n

Read the short story below and answer the three questions:

\n

\n
\n
One day my Dad bought me a new red beach ball.
\n
\n
My brother and I took it down to the beach to play with.
\n
\n
We were playing Soccer when he kicked the ball into the water, accidentally.
\n
\n
The ball floated out to sea before we could rescue it.
\n
 
\n
\n
\n
HINT:  The correct answers are marked with an asterisk!
',NULL,'2008-04-11 15:37:41',0,0,5,0,0,'','',0,1,3,0,'',1,1,1); /*!40000 ALTER TABLE `tl_lamc11_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamc11_options_content` -- DROP TABLE IF EXISTS `tl_lamc11_options_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamc11_options_content` ( `uid` bigint(20) NOT NULL auto_increment, `correct_option` tinyint(1) NOT NULL default '0', `mc_que_content_id` bigint(20) NOT NULL, `mc_que_option_text` varchar(250) default NULL, `displayOrder` int(5) default NULL, PRIMARY KEY (`uid`), KEY `mc_que_content_id` (`mc_que_content_id`), CONSTRAINT `FK_tl_lamc11_options_content_1` FOREIGN KEY (`mc_que_content_id`) REFERENCES `tl_lamc11_que_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamc11_options_content` -- LOCK TABLES `tl_lamc11_options_content` WRITE; /*!40000 ALTER TABLE `tl_lamc11_options_content` DISABLE KEYS */; INSERT INTO `tl_lamc11_options_content` VALUES (1,0,1,'Answer 1',1),(2,1,1,'Answer 2',2),(3,1,2,'Dad *',3),(4,0,2,'Mum',2),(5,0,2,'Santa Claus',1),(6,0,3,'Yellow',1),(7,1,3,'Red *',2),(8,0,3,'Green',3),(9,0,4,'Rugby',3),(10,1,4,'Soccer *',2),(11,0,4,'Cricket',1),(12,0,5,'Santa Claus',1),(13,0,5,'Mum',2),(14,1,5,'Dad *',3),(15,0,6,'Yellow',1),(16,1,6,'Red *',2),(17,0,6,'Green',3),(18,0,7,'Cricket',1),(19,1,7,'Soccer *',2),(20,0,7,'Rugby',3); /*!40000 ALTER TABLE `tl_lamc11_options_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamc11_que_content` -- DROP TABLE IF EXISTS `tl_lamc11_que_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamc11_que_content` ( `uid` bigint(20) NOT NULL auto_increment, `question` text, `mark` int(5) NOT NULL default '1', `display_order` int(5) default NULL, `mc_content_id` bigint(20) NOT NULL, `feedback` text, PRIMARY KEY (`uid`), KEY `mc_content_id` (`mc_content_id`), CONSTRAINT `FK_tl_lamc11_que_content_1` FOREIGN KEY (`mc_content_id`) REFERENCES `tl_lamc11_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamc11_que_content` -- LOCK TABLES `tl_lamc11_que_content` WRITE; /*!40000 ALTER TABLE `tl_lamc11_que_content` DISABLE KEYS */; INSERT INTO `tl_lamc11_que_content` VALUES (1,'A Sample question?',1,1,1,NULL),(2,'
Who bought the ball?
',1,1,2,''),(3,'
What colour was the ball?
',1,2,2,''),(4,'
What game was being played on the beach?
',1,3,2,''),(5,'
Who bought the ball?
',1,1,3,''),(6,'
What colour was the ball?
',1,2,3,''),(7,'
What game was being played on the beach?
',1,3,3,''); /*!40000 ALTER TABLE `tl_lamc11_que_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamc11_que_usr` -- DROP TABLE IF EXISTS `tl_lamc11_que_usr`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamc11_que_usr` ( `uid` bigint(20) NOT NULL auto_increment, `que_usr_id` bigint(20) NOT NULL, `mc_session_id` bigint(20) NOT NULL, `username` varchar(255) default NULL, `fullname` varchar(255) default NULL, `responseFinalised` tinyint(1) NOT NULL default '0', `viewSummaryRequested` tinyint(1) NOT NULL default '0', `last_attempt_order` int(11) default NULL, `last_attempt_total_mark` int(11) default NULL, PRIMARY KEY (`uid`), KEY `mc_session_id` (`mc_session_id`), CONSTRAINT `FK_tl_lamc11_que_usr_1` FOREIGN KEY (`mc_session_id`) REFERENCES `tl_lamc11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamc11_que_usr` -- LOCK TABLES `tl_lamc11_que_usr` WRITE; /*!40000 ALTER TABLE `tl_lamc11_que_usr` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lamc11_que_usr` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamc11_session` -- DROP TABLE IF EXISTS `tl_lamc11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamc11_session` ( `uid` bigint(20) NOT NULL auto_increment, `mc_session_id` bigint(20) NOT NULL, `session_start_date` datetime default NULL, `session_end_date` datetime default NULL, `session_name` varchar(100) default NULL, `session_status` varchar(100) default NULL, `mc_content_id` bigint(20) NOT NULL, PRIMARY KEY (`uid`), UNIQUE KEY `UQ_tl_lamc11_session_1` (`mc_session_id`), KEY `mc_content_id` (`mc_content_id`), CONSTRAINT `FK_tl_lamc_session_1` FOREIGN KEY (`mc_content_id`) REFERENCES `tl_lamc11_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamc11_session` -- LOCK TABLES `tl_lamc11_session` WRITE; /*!40000 ALTER TABLE `tl_lamc11_session` DISABLE KEYS */; INSERT INTO `tl_lamc11_session` VALUES (1,22,'2009-05-21 17:39:13',NULL,'Everybody learners','INCOMPLETE',3); /*!40000 ALTER TABLE `tl_lamc11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamc11_uploadedfile` -- DROP TABLE IF EXISTS `tl_lamc11_uploadedfile`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamc11_uploadedfile` ( `submissionId` bigint(20) NOT NULL auto_increment, `uuid` varchar(255) NOT NULL, `mc_content_id` bigint(20) NOT NULL, `isOnline_File` tinyint(1) NOT NULL, `filename` varchar(255) NOT NULL, PRIMARY KEY (`submissionId`), KEY `mc_content_id` (`mc_content_id`), CONSTRAINT `FK_tl_lamc11_uploadedFile` FOREIGN KEY (`mc_content_id`) REFERENCES `tl_lamc11_content` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamc11_uploadedfile` -- LOCK TABLES `tl_lamc11_uploadedfile` WRITE; /*!40000 ALTER TABLE `tl_lamc11_uploadedfile` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lamc11_uploadedfile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamc11_usr_attempt` -- DROP TABLE IF EXISTS `tl_lamc11_usr_attempt`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamc11_usr_attempt` ( `uid` bigint(20) NOT NULL auto_increment, `que_usr_id` bigint(20) NOT NULL, `mc_que_content_id` bigint(20) NOT NULL, `mc_que_option_id` bigint(20) NOT NULL, `attempt_time` datetime default NULL, `isAttemptCorrect` tinyint(1) NOT NULL default '0', `mark` varchar(255) default NULL, `passed` tinyint(1) NOT NULL default '0', `attemptOrder` int(11) NOT NULL default '1', `finished` tinyint(1) default '0', PRIMARY KEY (`uid`), KEY `mc_que_content_id` (`mc_que_content_id`), KEY `mc_que_option_id` (`mc_que_option_id`), KEY `que_usr_id` (`que_usr_id`), CONSTRAINT `FK_tl_lamc11_usr_attempt_2` FOREIGN KEY (`mc_que_content_id`) REFERENCES `tl_lamc11_que_content` (`uid`), CONSTRAINT `FK_tl_lamc11_usr_attempt_3` FOREIGN KEY (`mc_que_option_id`) REFERENCES `tl_lamc11_options_content` (`uid`), CONSTRAINT `FK_tl_lamc11_usr_attempt_4` FOREIGN KEY (`que_usr_id`) REFERENCES `tl_lamc11_que_usr` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamc11_usr_attempt` -- LOCK TABLES `tl_lamc11_usr_attempt` WRITE; /*!40000 ALTER TABLE `tl_lamc11_usr_attempt` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lamc11_usr_attempt` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamind10_attachment` -- DROP TABLE IF EXISTS `tl_lamind10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamind10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `mindmap_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_972920762_12090F57FC940906` (`mindmap_uid`), CONSTRAINT `FK_NEW_972920762_12090F57FC940906` FOREIGN KEY (`mindmap_uid`) REFERENCES `tl_lamind10_mindmap` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamind10_attachment` -- LOCK TABLES `tl_lamind10_attachment` WRITE; /*!40000 ALTER TABLE `tl_lamind10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lamind10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamind10_mindmap` -- DROP TABLE IF EXISTS `tl_lamind10_mindmap`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamind10_mindmap` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `multiuser_mode` bit(1) default NULL, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `export_content` text, `reflect_on_activity` bit(1) default NULL, `reflect_instructions` text, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamind10_mindmap` -- LOCK TABLES `tl_lamind10_mindmap` WRITE; /*!40000 ALTER TABLE `tl_lamind10_mindmap` DISABLE KEYS */; INSERT INTO `tl_lamind10_mindmap` VALUES (1,NULL,NULL,NULL,'Mindmap','Instructions',0x00,0x00,0x00,'','',0x00,0x00,19,NULL,0x00,NULL),(2,'2009-05-21 12:22:42','2009-05-14 20:58:02',NULL,'Mindmap','

The Mindmap Activity

\n
The new Mindmap activity allows Teachers and Learners to create, edit and view mindmaps in the LAMS environment.
\nMindmaps allow for the organising of concepts and ideas, and exploring how these interact.
\n
 
\n
The mindmap feature in LAMS the author to set up the initial framework for concept mapping.
\nOn the mindmap, learners can then add or remove thoughts (nodes), move existing nodes and change the colour of nodes.
\n
 
\n
\n
 
\n

Add some thoughts and ideas to the Mindmap below.

\n\n
 
\n
 
\n
\n
When you are finished, click \'Next Activity.\'
',0x00,0x00,0x00,'','',0x00,0x00,29,'\n \n 1\n Mind Maps!\n 6633bb\n Teacher\n 1\n \n \n \n \n 2\n Exploring Concepts\n eeee09\n Teacher\n 1\n \n \n \n \n \n 3\n Arranging Thoughts\n ee6609\n Teacher\n 1\n \n \n \n \n \n 4\n Developing New Ideas\n 9ee09\n Teacher\n 1\n \n \n \n \n \n 5\n Having Fun!\n 9eeee\n Teacher\n 1\n \n \n \n \n',0x00,''),(3,'2009-05-21 17:38:28','2009-05-14 20:58:02',NULL,'Mindmap','

The Mindmap Activity

\n
The new Mindmap activity allows Teachers and Learners to create, edit and view mindmaps in the LAMS environment.
\nMindmaps allow for the organising of concepts and ideas, and exploring how these interact.
\n
 
\n
The mindmap feature in LAMS the author to set up the initial framework for concept mapping.
\nOn the mindmap, learners can then add or remove thoughts (nodes), move existing nodes and change the colour of nodes.
\n
 
\n
\n
 
\n

Add some thoughts and ideas to the Mindmap below.

\n\n
 
\n
 
\n
\n
When you are finished, click \'Next Activity.\'
',0x00,0x00,0x00,'','',0x00,0x00,72,'\n \n 1\n Mind Maps!\n 6633bb\n Teacher\n 1\n \n \n \n \n 2\n Exploring Concepts\n eeee09\n Teacher\n 1\n \n \n \n \n \n 3\n Arranging Thoughts\n ee6609\n Teacher\n 1\n \n \n \n \n \n 4\n Developing New Ideas\n 9ee09\n Teacher\n 1\n \n \n \n \n \n 5\n Having Fun!\n 9eeee\n Teacher\n 1\n \n \n \n \n',0x00,''); /*!40000 ALTER TABLE `tl_lamind10_mindmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamind10_node` -- DROP TABLE IF EXISTS `tl_lamind10_node`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamind10_node` ( `node_id` bigint(20) NOT NULL auto_increment, `unique_id` bigint(20) default NULL, `parent_id` bigint(20) default NULL, `node_text` varchar(100) default NULL, `node_color` varchar(6) default NULL, `session_id` bigint(20) default NULL, `user_id` bigint(20) default NULL, `mindmap_id` bigint(20) default NULL, PRIMARY KEY (`node_id`), KEY `MindmapNode_Parent_FK` (`parent_id`), KEY `MindmapNode_User_FK` (`user_id`), KEY `MindmapNode_Mindmap_FK` (`mindmap_id`), CONSTRAINT `MindmapNode_Mindmap_FK` FOREIGN KEY (`mindmap_id`) REFERENCES `tl_lamind10_mindmap` (`uid`), CONSTRAINT `MindmapNode_Parent_FK` FOREIGN KEY (`parent_id`) REFERENCES `tl_lamind10_node` (`node_id`), CONSTRAINT `MindmapNode_User_FK` FOREIGN KEY (`user_id`) REFERENCES `tl_lamind10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamind10_node` -- LOCK TABLES `tl_lamind10_node` WRITE; /*!40000 ALTER TABLE `tl_lamind10_node` DISABLE KEYS */; INSERT INTO `tl_lamind10_node` VALUES (1,1,NULL,'Mind Maps!','6633bb',NULL,NULL,2),(2,2,1,'Exploring Concepts','eeee09',NULL,NULL,2),(3,3,1,'Arranging Thoughts','ee6609',NULL,NULL,2),(4,4,1,'Developing New Ideas','9ee09',NULL,NULL,2),(5,5,1,'Having Fun!','9eeee',NULL,NULL,2),(6,1,NULL,'Mind Maps!','6633bb',NULL,NULL,3),(7,2,6,'Exploring Concepts','eeee09',NULL,NULL,3),(8,3,6,'Arranging Thoughts','ee6609',NULL,NULL,3),(9,4,6,'Developing New Ideas','9ee09',NULL,NULL,3),(10,5,6,'Having Fun!','9eeee',NULL,NULL,3); /*!40000 ALTER TABLE `tl_lamind10_node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamind10_request` -- DROP TABLE IF EXISTS `tl_lamind10_request`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamind10_request` ( `uid` bigint(20) NOT NULL auto_increment, `unique_id` bigint(20) default NULL, `global_id` bigint(20) default NULL, `request_type` tinyint(4) default NULL, `node_id` bigint(20) default NULL, `node_child_id` bigint(20) default NULL, `user_id` bigint(20) default NULL, `mindmap_id` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `mindmap_id` (`mindmap_id`), KEY `user_id` (`user_id`), CONSTRAINT `tl_lamind10_request_fk` FOREIGN KEY (`mindmap_id`) REFERENCES `tl_lamind10_mindmap` (`uid`), CONSTRAINT `tl_lamind10_request_fk1` FOREIGN KEY (`user_id`) REFERENCES `tl_lamind10_user` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamind10_request` -- LOCK TABLES `tl_lamind10_request` WRITE; /*!40000 ALTER TABLE `tl_lamind10_request` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lamind10_request` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamind10_session` -- DROP TABLE IF EXISTS `tl_lamind10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamind10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `mindmap_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_972920762_B7C198E2FC940906` (`mindmap_uid`), CONSTRAINT `FK_NEW_972920762_B7C198E2FC940906` FOREIGN KEY (`mindmap_uid`) REFERENCES `tl_lamind10_mindmap` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamind10_session` -- LOCK TABLES `tl_lamind10_session` WRITE; /*!40000 ALTER TABLE `tl_lamind10_session` DISABLE KEYS */; INSERT INTO `tl_lamind10_session` VALUES (1,NULL,NULL,NULL,6,'Everybody learners',3); /*!40000 ALTER TABLE `tl_lamind10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lamind10_user` -- DROP TABLE IF EXISTS `tl_lamind10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lamind10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `mindmap_session_uid` bigint(20) default NULL, `entry_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_972920762_CB8A58FFA3B0FADF` (`mindmap_session_uid`), CONSTRAINT `FK_NEW_972920762_CB8A58FFA3B0FADF` FOREIGN KEY (`mindmap_session_uid`) REFERENCES `tl_lamind10_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lamind10_user` -- LOCK TABLES `tl_lamind10_user` WRITE; /*!40000 ALTER TABLE `tl_lamind10_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lamind10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lanb11_attachment` -- DROP TABLE IF EXISTS `tl_lanb11_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lanb11_attachment` ( `attachment_id` bigint(20) NOT NULL auto_increment, `nb_content_uid` bigint(20) NOT NULL, `filename` varchar(255) NOT NULL, `uuid` bigint(20) NOT NULL, `version_id` bigint(20) default NULL, `online_file` tinyint(1) NOT NULL, PRIMARY KEY (`attachment_id`), KEY `nb_content_uid` (`nb_content_uid`), CONSTRAINT `FK_tl_lanb11_attachment_1` FOREIGN KEY (`nb_content_uid`) REFERENCES `tl_lanb11_content` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lanb11_attachment` -- LOCK TABLES `tl_lanb11_attachment` WRITE; /*!40000 ALTER TABLE `tl_lanb11_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lanb11_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lanb11_content` -- DROP TABLE IF EXISTS `tl_lanb11_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lanb11_content` ( `uid` bigint(20) NOT NULL auto_increment, `nb_content_id` bigint(20) NOT NULL, `title` text, `content` text, `online_instructions` text, `offline_instructions` text, `define_later` tinyint(1) default NULL, `force_offline` tinyint(1) default NULL, `reflect_on_activity` tinyint(1) default NULL, `reflect_instructions` text, `content_in_use` tinyint(1) default NULL, `creator_user_id` bigint(20) default NULL, `date_created` datetime default NULL, `date_updated` datetime default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `nb_content_id` (`nb_content_id`) ) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lanb11_content` -- LOCK TABLES `tl_lanb11_content` WRITE; /*!40000 ALTER TABLE `tl_lanb11_content` DISABLE KEYS */; INSERT INTO `tl_lanb11_content` VALUES (1,2,'Noticeboard','Content','','',0,0,0,'Reflect on noticeboard',0,NULL,'2009-05-21 17:32:55',NULL),(2,23,'LAMS 2.3','
\n
\"\"
\n

What\'s New in LAMS 2.3

\n
You\'ve mastered the authoring environment, created a sequence and seen how to monitor learners while they work through your creation.
\n
 
\n

But what\'s next?

\n
The LAMS v2.3 release introduces new features and activities that can make your sequences even more powerful.
\n
 
\n
Click \'Next Activity\' to learn more.
\n
 
\n
','','',0,0,0,'',0,5,'2008-04-10 11:56:54','2009-05-14 20:14:08'),(3,24,'Noticeboard Activity','

Advanced Noticeboard Tricks

\n
The new FCKEditor has some neat new features that make including external content and multimedia in LAMS sequences even easier.
\n
 
\n
For starters, there is a new Media Player function (more info here) that automatically inserts audio and video into LAMS activities - this means that you no longer have to work with HTML code to embed multimedia into LAMS.
\n

Media Player Examples

\n
 
\n\n \n \n \n \n \n \n
\n

YouTube Videos

\n
\n \n
\n
 
\n
\n

 

\n

 

\n

MP3 Files

\n
\n \n \n
\n

 LAMS PODCAST with ALAN CARRINGTON (CLPD Adelaide Uni)
\n and JAMES DALZIEL (MELCOE, Macquarie Uni)

\n
\n
\n

Drawing Plugin

\n
There is also a Drawing plugin for fckEditor which works much the same way as a standard painting program.
\n
 
\n
Authors and Learners can create images like this...
\n
 
\n
\"\"
\n
 
\n
...all from within LAMS!
\n

 

\n
\n

Other FCK Plugins

\n
You can now also include a whole raft of plugins into the fckEditor, such as
\n\n
For more information about the FCK Editor plugins, click here.
\n
 
\n
 
\n
\n
 
\n
Click \'Next Activity\' to move on.
\n
\n
 
','','',0,0,0,'',0,5,'2008-04-10 13:35:26','2009-05-14 20:14:42'),(4,27,'Assessment and Gradebook','

The New Assessment Activity

\n
\"\"  The new Assessment activity makes it easier than ever to create complex assessment tasks inside a LAMS sequence. The new tool can also export the results from an assessment task into a Gradebook, which can then be recorded in LAMS, or exported for use in another program.
\n
 
\n
The Assessment tool is highly configurable, and supports a range of question types which may or may not be attempted within a time limit. Learner feedback is also highly customisable, and sequence Authors/Monitors have the option of allowing Learners to re-attempt the assessment, with the option of reducing their final grade by penalty marks with each attempt.
\n
 
\n
For more detailed information about creating and using Assessment activities, view the LAMS online help, here.
\n
 
\n
\n

Using the Gradebook

\n
\"\" The New Gradebook interface allows Monitoring teachers to gain a comprehensive overview of Learners performance through a lesson.
\n
 
\n
 Not only the Assessment Activity but any LAMS activity that creates outputs can be used as part of a Gradebook.
\n
 
\n
For more on creating and using Gradebooks, view the LAMS online help, here.
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n
 
\n
 Click \'Next Activity\' to continue.
','','',0,0,0,'',0,5,'2009-05-14 20:28:36','2009-05-14 20:35:51'),(5,28,'Wrapping Up','
\n\n\n
\n

Version 2.3 New Activities

\n

That wraps it up for all the new activities included as part of LAMS 2.3

\n

Why not have a go now at creating your own sequence using some of the new activities we\'ve discovered?

\n

 

\n
\n

Click \'Next Activity\' to finish this lesson.

','','',0,0,0,'Reflect on noticeboard',0,5,'2009-05-14 02:00:41','2009-05-14 20:32:41'),(6,30,'Video Recorder Tool','

The Video Recorder

\n
\"\"
\n
 As part of LAMS 2.3, we\'re very excited to announce the release of the Video Recorder tool, which adds two new major features to LAMS.
\n
 
\n
\n

Firstly,

\nsequence authors can now add video messages to any instructions field in LAMS. This means that the Author can \'teach\' the lesson from a Q&A, Submit Files, &c, anywhere where instructions are given to learners.
\n
 
\n
\n

Secondly,

\n
the Video Recorder adds a new activity to LAMS, which allows Learners to upload and comment on their own videos during the sequence.
\n
 
\n
For more details and a demo of the Video recorder, see the LAMS Wiki, here.
\n
 
\n
\n
 
\n
Click \'Next Activity\' to move on.
\n
','','',0,0,0,'',0,8,'2009-05-20 21:20:34','2009-05-20 21:21:35'),(7,31,'LAMS Activities','
\n
\"\"
\nSo you’ve had a look at the Authoring Environment - but what are the next steps?
\n
 
\n
This LAMS sequence will show you each of the activities available for use in LAMS 2.1, and techniques for getting the most out of their use.
\n
 
\n
This activity also discusses NEW activities added in the 2.2 release.
\n
 
\n

 

\n

Activity Types

\n
Earlier, we discussed the four different types of LAMS activities: 
\n

Informative,  Collaborative,  Assessement,  and Reflective 

\n
\n
\n
The rest of this sequence will let you view demonstrations of each of the LAMS activities, and briefly discuss how they might be best used in a lesson.
\n
\n
\n
 
\n
\n
 
\n
 Click ’Next Activity’ to move on.
','','',0,0,0,'',0,8,'2008-04-10 11:56:54','2008-11-14 13:14:33'),(8,32,'Informative Tools','
The Informative tools in LAMS allow Authors and Monitors to share information with Learners, and (in the case of Share Resources) allow Learners to share information with each other.
\n
 
\n
Informative tools display on the Authoring Canvas with an orange icon.
\n
 
\n
\n

\"\"Noticeboard

\n
The Noticeboard provides a simple way of providing information and content to the learners. The activity can display text, images, audio, video, links and other HTML content.
\n
 
\n
Example: The activity you’re looking at right now is a Noticeboard!
\n
 
\n
\n

\"\"Share Resources

\n
Resource Sharing allows Authors to create lists of resources such as:
\n
 
\n\n
 
\n
The tool can also be set-up so that Learners can add their own resources for other learners to see. 
\n
 
\n
Example: The animations in these ’Getting Started’ were added to LAMS by creating a zipped website and uploading the file into a Share Resources activity.
\n
 
\n
\n

Coming Up Next...

\n
    \n
  1. Advanced Noticeboard Features
  2. \n
  3. Share Resources Demonstration
  4. \n
  5. Spreadsheet Demonstration (New to LAMS 2.2)
  6. \n
     
    \n
\n
 
','','',0,0,0,'',0,8,'2008-04-10 13:07:18','2008-11-14 13:14:13'),(9,33,'Noticeboard Activity','

Advanced Noticeboard Tricks

\n
You can use the noticeboard to embed any web object using HTML.
\n

For example

\n
 
\n\n \n \n \n \n \n \n
\n

YouTube Videos

\n
\n
\n

MP3 Files

\n
\n

 LAMS PODCAST with ALAN CARRINGTON (CLPD Adelaide Uni)
\n and JAMES DALZIEL (MELCOE, Macquarie Uni)

\n
\n
\n

 

\n
\n

And Even Complete External Websites

\n
\n
\n
 
\n

\n
 
\n
 
\n
The next activity is a demonstration ’Share Resources’ activity.
\n
 
','','',0,0,0,'',0,8,'2008-04-10 13:35:26','2008-11-14 13:13:28'),(10,35,'CONGRATULATIONS!','

\"\"!!! CONGRATULATIONS !!!

\n

You’ve finished LAMS101:Getting Started!

\n
 
\n
Get out there and start making sequences!
\n
 
\n
Or, if you want some more ideas,
\ncheck out the sequence-sharing goodness
\nat the LAMS Community Website.
\n
 
\n
http://lamscommunity.org/
\n
 
','','',0,0,0,'',0,4,'2008-04-11 16:49:00','2008-11-10 12:54:33'),(11,36,'Assessment Activities','
The Assessment tools in LAMS provide a vehicle for sequence monitors to collect Learner responses to a topic.
\n
  
\n
\n

\"\"Multiple Choice

\n
 The Multiple Choice Quiz delivers a series of Multiple Choice questions to learners, and the advanced features of this tool provide a high level of customisation for Authors as to how the quiz is administered.
\n
 
\n
When the Quiz is complete, LAMS will automatically tally the marks from each learner and display the statistics to sequence monitors.
\n
 
\n
Authors can also choose to release Learner marks directly after they have completed the quiz, as a type of formative assessment or delay releasing the marks until a Sequence Monitor chooses to release them, for Summative Assessment. The Activity also allows learners to view the top, bottom and average marks from the quiz.
\n
 
\n
\n

\"\"Submit Files

\n
The Submit Files Activity provides a vehicle for Authors to collect Student responses which are created in software outside of LAMS.
\n
 
\n
This could be an essay in .DOC or .PDF format, a digital presentation, or some sort of multimedia file.
\n
 
\n
Learners log in to LAMS, and are able to upload their file to the LAMS server as an attachment.  Sequence Monitors can view these files, comment on them and give each individual file a mark, which is in turn accessible by Learners.
\n
 
\n
Like the MCQ, sequence authors can choose to allow learners several attempts at submission, allowing for feedback and creating a formative assessment style, or alternatively, lock the activity after submission, which creates a summative assessment style.
\n
 
\n
\n
 
\n
The next activity is a demonstration Multiple Choice quiz,
\nfollowed by a demonstration Submit Files activity.
','','',0,0,0,'',0,8,'2008-04-10 14:39:45','2008-11-14 13:14:54'),(12,38,'DimDim Web Conferencing','
Also available for use in LAMS 2.2 is the DimDim Web Conferencing Activity.
\n
 
\n
The documentation is included below (You will need internet access to view this page.)
\n
\n
 
\n
','','',0,0,0,'',0,4,'2008-11-10 12:45:56','2008-11-10 12:48:40'),(13,39,'Reflective Activities','
Reflective tools ask learners to analyse their own learning throughout a sequence,
\nor alternatively, collects responses from students and asks them to consider trends in the resulting data.
\n
 
\n
\n
 
\n

\"\" Question and Answer

\n
This activity creates a series of Questions and Short-Answer responses for Learners.
\n
\n

The sequence Author can pen their own responses to each question, which are displayed to learners after they have submitted their own answers.

\n

The activity can also be configured to display answers collected from all learners in the sequence or group.

\n

The Question and Answer Activity allows teachers to pose a question or questions to learners individually, and after they have entered their response, to see the responses of all their peers presented on a single answer screen.

\n
\n
 
\n
\n
\n
 
\n

\"\" Survey

\n
\n

The Survey Tool is similar to Multiple Choice, in that it presents learners with a number of questions and collects their responses. However, unlike Multiple Choice there are no right or wrong answers - the system just collates all answers for analysis by the teacher in the monitoring area.

\n

Question types include single response, multiple response and open text entry, and questions can be mandatory or optional. For multiple choice questions, Learners can also be provided with the option of adding their own answer to a list.

\n
\n
 
\n
\n
\n
 
\n

\"\" Voting

\n
\n

The Voting Activity allows teachers to provide learners with a list of options to "Vote" on. It is similar to the Q&A Activity in that Voting shows first one screen with all the available voting options, then a screen showing the individual learner’s selection, then a screen showing "progressive" voting results (i.e., a non-editable screen where learners can see results from themselves and other learners over time). Finally, there is Summary Screen of group results.

\n
\n
 
\n
\n
 
\n
The next three activities demonstrate the Q&A, Survey and Voting activities.
\n
\n
','','',0,0,0,'',0,8,'2008-04-11 16:26:32','2008-11-14 14:30:21'),(14,40,'Collaborative Activities','
The Collaborative tools in LAMS allow Learners to team up and solve problems, discuss ideas or share solutions together.
\n
  
\n
\n

 \"\" Chat Activity

\n
\n

The Chat Activity runs a live (synchronous) discussion for learners.
\nThis is similar to Instant Messaging (IM) software that most learners will be familiar with.

\n
\n
  
\n
\n
 
\n

\"\"  Forum Activity

\n
 
\n
 The Forum Activity provides an asynchronous discussion environment for learners, with discussion threads initially created by the teacher.\n

Forums can be ’locked’ as an activity which is only available for the period of the specific activity (i.e.: no more contributions can be made once the learner clicks ’Finish’, or they can be ’unlocked’, in that learners can add to the Forum throughout the life of the whole sequence.

\n
\n
 
\n
\n
 
\n

\"\"  Scribe Activity

\n
 The Scribe Activity is, by default, not enabled as a stand-alone activity.
\n

It allows a group of Learners to collaborate and create a written report with one Learner as the ’Scribe,’ or Writer for the report. The activity is most effective when paired with another collaborative activity. In the current release of LAMS (2.2) Scribe is available to be paired with either Chat or Forum.

\n

Using the Scribe Activity

\n

The Scribe Activity should always used in conjunction with another activity that gives it context. For instance, if used with Chat, then the Scribe (one particular learner) is expected to collect or summarize the output of the Chat discussion into a succinct set of sentences. Once the scribe has done this, they publish the summary to the rest of the learners who vote whether they agree with the summary as proposed by the scribe. If not, they can ask the scribe to modify the report until all learners agree on the report.

\n

Once the Scribe submits the report, the other learners in the group or class can agree or disagree with the summary. The scribe can finished the scribe task at any time regardless of the number of learners that have agreed with the proposed summaries. The Scribe task can also be finished through the monitoring environment by a teacher or instructor.

\n

Once the scribe task is finished a report of the statements and summary is presented to all learners.

\n
\n
 
\n
\n
  
\n

\n
','','',0,0,0,'',0,8,'2008-04-10 15:41:45','2008-11-14 13:16:43'),(15,43,'Split-Screen Activities','

There are Several Split-Screen activities available to authors
\nthat combine several activities on the same screen.

\n
\n
 
\n
\n

\"\" Chat and Scribe

\n
This activity is great for collecting Group Reports.
\n
 
\n
\n

It combines a Chat Activity with a Scribe Activity for collating the chat group\'s view on questions created by the teacher. When used in small group mode, the tool creates parallel Chat and Scribe areas for each small group, and then shows the outcome of each group collated on a whole class page.

\n
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n
\n

\n\"\"\n

Forum and Scribe

\n
The activity ombines a Forum Activity with a Scribe Activity for collating Forum Postings into a written report, which then must be approved by the entire group.
\n
 
\n
When used in small group mode, the tool creates parallel Forum and Scribe areas for each small group, and then shows the outcome of each group collated on a whole class page.
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n

\"\"Resource Sharing and Forum

\n
This activity allows Learners to submit files and/or URLS to a page viewable by their class or group.
\n
 
\n
The group then discuss the resources in the Forum.
\n
 
\n
This is a great way to get Learner\'s evaluating each other\'s work, or to foster some collaborative online research.
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n
\n
 
\n
The next activity is a demonstration Resource Sharing and Forum activity.
','','',0,0,0,'',0,1,'2008-04-10 16:29:19','2008-04-11 15:59:24'),(16,49,'Noticeboard','

New Collaborative Activities in LAMS 2.2

\n

\"\"  Google Maps

\n
The Google Maps tool allows sequence Authors to create maps or satellite images with annotated place markers.  During the running of the activity, Learners can add their own markers to the map and view markers placed by other learners.
\n
 
\n
A demonstration Gmap activity is coming up.
\n
 
\n
\n
 
\n
\"\" Wiki Activity
\n
\n

The Wiki Tool allows for authors to create content pages that can link to each other and, optionally, allow Learners to make collaborative edits to the content provided.

\n

 Wiki activities allow authors and learners to create sub pages, which can contain more refined content on the topic.

\n

A Wiki Demonstration activity is coming up, which you can explore and edit. 

\n
\n
\n
 
\n

\n
','','',0,0,0,'',0,8,'2008-11-14 13:48:47','2008-11-14 13:50:27'),(17,50,'Notebook Activity','

\"\"Notebook Activity

\n
The next LAMS activity to look at is the Notebook activity.
\n
 
\n
This activity is a bit special because it can be attached to any LAMS activity at any point in the lesson.
\nEach LAMS activity has an option in Advanced Properties called "attach Notebook with text..."
\n
 
\n
Basically, this allows sequences authors to get Learners to reflect on their knowledge at any point in the sequence - and it’s also really easy for monitors to add a notebook to any activity in a sequence without mucking around with transition lines or changing the shape of the sequence.
\n
 
\n
Of course, the notebook can also be included in sequences as a standalone tool.
\n
 
\n
\n
 
','','',0,0,0,'',0,8,'2008-04-11 16:41:59','2008-11-14 13:51:16'),(18,54,'Data Collection Activity','

\"\" Data Collection

\n
 
\n
The Data Collection tool allows Authors to create database style lists for Learners to populate.
\nEach record list is highly flexible, and the activity can be configured to allow multiple records to exist for each learner.
\n
The next Activity demonstrates the use of Data Collection.
\n
 
\n
\n
 
','','',0,0,0,'',0,8,'2008-11-14 14:26:47','2008-11-14 14:26:47'),(19,56,'LAMS Environments','
\"\"
\n

There are four main environments in LAMS

\n

The Learning Environment

\n
\n
The Learning Environment is the ’doing’ of LAMS.
\n
This is what Learners will see when they log in to LAMS and start participating in a sequence.
\n
The Learning Environment displays the sequences that are created in Authoring.
\n

 

\n
\n

The Authoring Environment

\n
The Authoring Environment is where sequences are put together, modified and shared.
\n
It contains all of the LAMS activities, and is where authors create their lesson designs.
\n
 
\n

\n

The Monitoring Environment

\n
Monitors are not necessarily the people who Authored the sequence in the first place - they simply run the lesson for learners, and supervise each learner’s progress through the lesson. In practice, Teachers are often both Authors and Monitors for their class(es) of students.
\n
 
\n

\n

The System Administration Environment

\n
System Administration is for Technical Management of a LAMS server.
\n
 
\n
From here, users with Administration rights can change nearly every aspect of the LAMS software. 
\n

LAMS System Administration is discussed in detail on the Documentation Website.
\nClick here for details [Online Link].

\n
 
\n
\n
\n
\n
\n
 
\n
The next activity will allow you to choose from animated tutorials on each three environments.
','','',0,0,0,'',0,1,'2008-03-27 15:12:18','2008-06-05 11:47:45'),(20,57,'The Learning Environment','
 
\n
You’re Using the Learning Environment Right Now!
\n
\n
 
\n
... but if you want to check out more of the features,
\nview the following animations!
\n
 
\n
\n

\nThe First Animation demonstrates a Learner moving through a sequence.
\n
 
\n
The Second Animation deals with the new "no-flash" interface for the Learning Environment
','','',0,0,0,'',0,11,'2008-04-11 17:34:57','2008-05-29 17:16:33'),(21,58,'Are You Sure?','

You’ve reached the end of this sequence... but are you sure you want to leave?

\n
 
\n\n \n \n \n \n \n \n \n
\"\"
\n
. .\n
You may have clicked the Next Activity button on the last screen, which would bring you here.
\n
 
\n
If so, and you want to go back and view more of this sequence, double-click the Icon for the Optional Activity in your Progress Bar (see the graphic at right.)
\n
 
\n
Once there, select an option, and click the Choose button.
\n
 
\n
 
\n
 
\n
If you really have finished, and want to leave the sequence, click Next Activity below.
\n
\n
\n
 
\n
\n
 
\n
 
','','',0,0,0,'',0,1,'2008-05-02 11:42:23','2008-05-02 12:05:42'),(22,63,'The Structure of LAMS','

LAMS is arranged hierarchically, with sequences organised into Groups and Subgroups.

\n

What does this mean?

\n
Think of it like this:
\n
 
\n\n \n \n \n \n \n \n \n \n \n \n
\n

In Real Life

\n
\n

In Lams

\n
\n
    \n
  • A Professor teaches a Course, and organises smaller classes.
  • \n
  • Individual Tutors teaches a smaller Class taken from the whole course.
  • \n
  • A Course has at least one lesson plan, that is applied to all students in the course.
  • \n
  • The smaller classes can have at least one specific lesson plan for those students.
  • \n
\n
\n
    \n
  • A Course Manager creates a main Group, and can create several SubGroups.
  • \n
  • Author/Monitors are assigned to one or many Subgroups.
  • \n
  • The Group contains one or more Sequences for all Learners in the Group.
  • \n
  • Likewise, the Subgroup can contain one or many Sequences for those Learners.
  • \n
\n
\n
 
\n
 
\n
There is also the role of Course Administrator. This role allows the user to modify Groups, Subgroups and Learners inside a course. In practice, this is a secretarial role designed to assist the educator running the course.
\n
 
\n
\n

A Working Example

\n
 This image shows the different sections that make up a Group in LAMS.
\n
 
\n
\"\"
\n
 
\n
Click Next Activity to continue.
','','',0,0,0,'',0,5,'2008-05-02 13:38:25','2008-06-06 12:09:41'),(23,65,'LAMS101 - Lesson One','
\n

So What is LAMS?

\n

Congratulations - if you can see this sequence, LAMS is up and running on your server. You’ve also figured out how to log in, and participate in a "sequence" - that’s what we call a collection of LAMS activities.

\n

\n

In a word, that’s what LAMS does - it is a System that Manages sequences of Learning Activities.  A Sequence is an online digital lesson that simulates the classroom environment in a virtual space.

\n

Sequences are first created by Authors, and are then run for different groups of Learners while a Monitor supervises.  We’ll look more at these Roles in LAMS in Lesson Two of LAMS101.

\n

Sequences are made up of activities - each of which has a particular function, either:

\n\n

Informative  Collaborative  Assessment  Reflective

\n
\n

Sequences can include a range of individual tasks, small group work and whole class activities based on both content and collaboration.

\n

When you use LAMS, not only are you creating online activities for your learners, you also create a structured lesson plan at the same time.  We’ll talk about this Visual Authoring Environment in a few moments.

\n

... and what’s with the Sheep?

\n\n

\"dolly

\n

Dolly is our LAMS mascot.  Back when LAMS was being redesigned for version 2.0, it was the "next-generation" of LAMS.  Dolly the sheep was the first mammal to have been successfully cloned from an adult cell, therefore, she was the next generation LAMB (see what we did there?).

\n

Our marvelous designer Shelly is the official mother of Dolly and also our front page model. So all kudos to her!

\n
\n 
\n
To progress to the next activity in this sequence, click the button down here.
','','',0,0,0,'Reflect on noticeboard',0,1,'2008-03-12 16:38:33','2008-06-05 09:52:50'),(24,66,'Creating Your Own Sequences','

LAMS Authoring

\n
LAMS provides you with a visual authoring environment for creating, storing and re-using activity sequences. The drag-and-drop interface is central to the LAMS authoring environment. Teachers drag-and-drop activities into the authoring area and then join the activities together by drawing "Transitions" to produce a learning sequence. This workflow model is what principally distinguishes LAMS from other more content based online learning platforms. LAMS has a wide range of tools designed for use in a range of educational contexts by teachers and students with varying levels of technical expertise.
\n

Benefits of LAMS

\n
Creating a lesson in LAMS means that:
\n
 
\n\n
 
\n
\n
 
\n
\"\" 
\n
The next animation will demonstrate creating a lesson in LAMS.
','','',0,0,0,'',0,11,'2008-04-03 16:11:54','2008-05-29 16:55:57'),(25,68,'The tip of the iceberg...','

LAMS has many, many more functions that you can explore.

\n

The new release of version 2.1 includes increased functionality in many areas, some of which are explored in the rest of this Getting Started course.

\n

We Hope You Enjoy Exploring LAMS!

\n

 

\n
 
','','',0,0,0,'',0,1,'2008-04-04 11:30:06','2008-06-05 11:45:40'),(26,71,'Noticeboard Activity','

Advanced Noticeboard Tricks

\n
The new FCKEditor has some neat new features that make including external content and multimedia in LAMS sequences even easier.
\n
 
\n
For starters, there is a new Media Player function (more info here) that automatically inserts audio and video into LAMS activities - this means that you no longer have to work with HTML code to embed multimedia into LAMS.
\n

Media Player Examples

\n
 
\n\n \n \n \n \n \n \n
\n

YouTube Videos

\n
\n \n
\n
 
\n
\n

 

\n

 

\n

MP3 Files

\n
\n \n \n
\n

 LAMS PODCAST with ALAN CARRINGTON (CLPD Adelaide Uni)
\n and JAMES DALZIEL (MELCOE, Macquarie Uni)

\n
\n
\n

Drawing Plugin

\n
There is also a Drawing plugin for fckEditor which works much the same way as a standard painting program.
\n
 
\n
Authors and Learners can create images like this...
\n
 
\n
\"\"
\n
 
\n
...all from within LAMS!
\n

 

\n
\n

Other FCK Plugins

\n
You can now also include a whole raft of plugins into the fckEditor, such as
\n\n
For more information about the FCK Editor plugins, click here.
\n
 
\n
 
\n
\n
 
\n
Click \'Next Activity\' to move on.
\n
\n
 
','','',0,0,0,'',0,5,'2008-04-10 13:35:26','2009-05-14 20:14:42'),(27,73,'Wrapping Up','
\n\n\n
\n

Version 2.3 New Activities

\n

That wraps it up for all the new activities included as part of LAMS 2.3

\n

Why not have a go now at creating your own sequence using some of the new activities we\'ve discovered?

\n

 

\n
\n

Click \'Next Activity\' to finish this lesson.

','','',0,0,0,'Reflect on noticeboard',0,5,'2009-05-14 02:00:41','2009-05-14 20:32:41'),(28,74,'Video Recorder Tool','

The Video Recorder

\n
\"\"
\n
 As part of LAMS 2.3, we\'re very excited to announce the release of the Video Recorder tool, which adds two new major features to LAMS.
\n
 
\n
\n

Firstly,

\nsequence authors can now add video messages to any instructions field in LAMS. This means that the Author can \'teach\' the lesson from a Q&A, Submit Files, &c, anywhere where instructions are given to learners.
\n
 
\n
\n

Secondly,

\n
the Video Recorder adds a new activity to LAMS, which allows Learners to upload and comment on their own videos during the sequence.
\n
 
\n
For more details and a demo of the Video recorder, see the LAMS Wiki, here.
\n
 
\n
\n
 
\n
Click \'Next Activity\' to move on.
\n
','','',0,0,0,'',0,8,'2009-05-20 21:20:34','2009-05-20 21:21:35'),(29,75,'LAMS 2.3','
\n
\"\"
\n

What\'s New in LAMS 2.3

\n
You\'ve mastered the authoring environment, created a sequence and seen how to monitor learners while they work through your creation.
\n
 
\n

But what\'s next?

\n
The LAMS v2.3 release introduces new features and activities that can make your sequences even more powerful.
\n
 
\n
Click \'Next Activity\' to learn more.
\n
 
\n
','','',0,0,0,'',0,5,'2008-04-10 11:56:54','2009-05-14 20:14:08'),(30,76,'Assessment and Gradebook','

The New Assessment Activity

\n
\"\"  The new Assessment activity makes it easier than ever to create complex assessment tasks inside a LAMS sequence. The new tool can also export the results from an assessment task into a Gradebook, which can then be recorded in LAMS, or exported for use in another program.
\n
 
\n
The Assessment tool is highly configurable, and supports a range of question types which may or may not be attempted within a time limit. Learner feedback is also highly customisable, and sequence Authors/Monitors have the option of allowing Learners to re-attempt the assessment, with the option of reducing their final grade by penalty marks with each attempt.
\n
 
\n
For more detailed information about creating and using Assessment activities, view the LAMS online help, here.
\n
 
\n
\n

Using the Gradebook

\n
\"\" The New Gradebook interface allows Monitoring teachers to gain a comprehensive overview of Learners performance through a lesson.
\n
 
\n
 Not only the Assessment Activity but any LAMS activity that creates outputs can be used as part of a Gradebook.
\n
 
\n
For more on creating and using Gradebooks, view the LAMS online help, here.
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n
 
\n
 Click \'Next Activity\' to continue.
','','',0,0,0,'',0,5,'2009-05-14 20:28:36','2009-05-14 20:35:51'),(31,78,'DimDim Web Conferencing','
Also available for use in LAMS 2.2 is the DimDim Web Conferencing Activity.
\n
 
\n
The documentation is included below (You will need internet access to view this page.)
\n
\n
 
\n
','','',0,0,0,'',0,4,'2008-11-10 12:45:56','2008-11-10 12:48:40'),(32,80,'Informative Tools','
The Informative tools in LAMS allow Authors and Monitors to share information with Learners, and (in the case of Share Resources) allow Learners to share information with each other.
\n
 
\n
Informative tools display on the Authoring Canvas with an orange icon.
\n
 
\n
\n

\"\"Noticeboard

\n
The Noticeboard provides a simple way of providing information and content to the learners. The activity can display text, images, audio, video, links and other HTML content.
\n
 
\n
Example: The activity you’re looking at right now is a Noticeboard!
\n
 
\n
\n

\"\"Share Resources

\n
Resource Sharing allows Authors to create lists of resources such as:
\n
 
\n\n
 
\n
The tool can also be set-up so that Learners can add their own resources for other learners to see. 
\n
 
\n
Example: The animations in these ’Getting Started’ were added to LAMS by creating a zipped website and uploading the file into a Share Resources activity.
\n
 
\n
\n

Coming Up Next...

\n
    \n
  1. Advanced Noticeboard Features
  2. \n
  3. Share Resources Demonstration
  4. \n
  5. Spreadsheet Demonstration (New to LAMS 2.2)
  6. \n
     
    \n
\n
 
','','',0,0,0,'',0,8,'2008-04-10 13:07:18','2008-11-14 13:14:13'),(33,82,'LAMS Activities','
\n
\"\"
\nSo you’ve had a look at the Authoring Environment - but what are the next steps?
\n
 
\n
This LAMS sequence will show you each of the activities available for use in LAMS 2.1, and techniques for getting the most out of their use.
\n
 
\n
This activity also discusses NEW activities added in the 2.2 release.
\n
 
\n

 

\n

Activity Types

\n
Earlier, we discussed the four different types of LAMS activities: 
\n

Informative,  Collaborative,  Assessement,  and Reflective 

\n
\n
\n
The rest of this sequence will let you view demonstrations of each of the LAMS activities, and briefly discuss how they might be best used in a lesson.
\n
\n
\n
 
\n
\n
 
\n
 Click ’Next Activity’ to move on.
','','',0,0,0,'',0,8,'2008-04-10 11:56:54','2008-11-14 13:14:33'),(34,83,'Noticeboard Activity','

Advanced Noticeboard Tricks

\n
You can use the noticeboard to embed any web object using HTML.
\n

For example

\n
 
\n\n \n \n \n \n \n \n
\n

YouTube Videos

\n
\n
\n

MP3 Files

\n
\n

 LAMS PODCAST with ALAN CARRINGTON (CLPD Adelaide Uni)
\n and JAMES DALZIEL (MELCOE, Macquarie Uni)

\n
\n
\n

 

\n
\n

And Even Complete External Websites

\n
\n
\n
 
\n

\n
 
\n
 
\n
The next activity is a demonstration ’Share Resources’ activity.
\n
 
','','',0,0,0,'',0,8,'2008-04-10 13:35:26','2008-11-14 13:13:28'),(35,84,'Collaborative Activities','
The Collaborative tools in LAMS allow Learners to team up and solve problems, discuss ideas or share solutions together.
\n
  
\n
\n

 \"\" Chat Activity

\n
\n

The Chat Activity runs a live (synchronous) discussion for learners.
\nThis is similar to Instant Messaging (IM) software that most learners will be familiar with.

\n
\n
  
\n
\n
 
\n

\"\"  Forum Activity

\n
 
\n
 The Forum Activity provides an asynchronous discussion environment for learners, with discussion threads initially created by the teacher.\n

Forums can be ’locked’ as an activity which is only available for the period of the specific activity (i.e.: no more contributions can be made once the learner clicks ’Finish’, or they can be ’unlocked’, in that learners can add to the Forum throughout the life of the whole sequence.

\n
\n
 
\n
\n
 
\n

\"\"  Scribe Activity

\n
 The Scribe Activity is, by default, not enabled as a stand-alone activity.
\n

It allows a group of Learners to collaborate and create a written report with one Learner as the ’Scribe,’ or Writer for the report. The activity is most effective when paired with another collaborative activity. In the current release of LAMS (2.2) Scribe is available to be paired with either Chat or Forum.

\n

Using the Scribe Activity

\n

The Scribe Activity should always used in conjunction with another activity that gives it context. For instance, if used with Chat, then the Scribe (one particular learner) is expected to collect or summarize the output of the Chat discussion into a succinct set of sentences. Once the scribe has done this, they publish the summary to the rest of the learners who vote whether they agree with the summary as proposed by the scribe. If not, they can ask the scribe to modify the report until all learners agree on the report.

\n

Once the Scribe submits the report, the other learners in the group or class can agree or disagree with the summary. The scribe can finished the scribe task at any time regardless of the number of learners that have agreed with the proposed summaries. The Scribe task can also be finished through the monitoring environment by a teacher or instructor.

\n

Once the scribe task is finished a report of the statements and summary is presented to all learners.

\n
\n
 
\n
\n
  
\n

\n
','','',0,0,0,'',0,8,'2008-04-10 15:41:45','2008-11-14 13:16:43'),(36,88,'Split-Screen Activities','

There are Several Split-Screen activities available to authors
\nthat combine several activities on the same screen.

\n
\n
 
\n
\n

\"\" Chat and Scribe

\n
This activity is great for collecting Group Reports.
\n
 
\n
\n

It combines a Chat Activity with a Scribe Activity for collating the chat group\'s view on questions created by the teacher. When used in small group mode, the tool creates parallel Chat and Scribe areas for each small group, and then shows the outcome of each group collated on a whole class page.

\n
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n
\n

\n\"\"\n

Forum and Scribe

\n
The activity ombines a Forum Activity with a Scribe Activity for collating Forum Postings into a written report, which then must be approved by the entire group.
\n
 
\n
When used in small group mode, the tool creates parallel Forum and Scribe areas for each small group, and then shows the outcome of each group collated on a whole class page.
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n

\"\"Resource Sharing and Forum

\n
This activity allows Learners to submit files and/or URLS to a page viewable by their class or group.
\n
 
\n
The group then discuss the resources in the Forum.
\n
 
\n
This is a great way to get Learner\'s evaluating each other\'s work, or to foster some collaborative online research.
\n
 
\n
 
\n
 
\n
 
\n
 
\n
 
\n
\n
\n
 
\n
The next activity is a demonstration Resource Sharing and Forum activity.
','','',0,0,0,'',0,1,'2008-04-10 16:29:19','2008-04-11 15:59:24'),(37,90,'Noticeboard','

New Collaborative Activities in LAMS 2.2

\n

\"\"  Google Maps

\n
The Google Maps tool allows sequence Authors to create maps or satellite images with annotated place markers.  During the running of the activity, Learners can add their own markers to the map and view markers placed by other learners.
\n
 
\n
A demonstration Gmap activity is coming up.
\n
 
\n
\n
 
\n
\"\" Wiki Activity
\n
\n

The Wiki Tool allows for authors to create content pages that can link to each other and, optionally, allow Learners to make collaborative edits to the content provided.

\n

 Wiki activities allow authors and learners to create sub pages, which can contain more refined content on the topic.

\n

A Wiki Demonstration activity is coming up, which you can explore and edit. 

\n
\n
\n
 
\n

\n
','','',0,0,0,'',0,8,'2008-11-14 13:48:47','2008-11-14 13:50:27'),(38,92,'Assessment Activities','
The Assessment tools in LAMS provide a vehicle for sequence monitors to collect Learner responses to a topic.
\n
  
\n
\n

\"\"Multiple Choice

\n
 The Multiple Choice Quiz delivers a series of Multiple Choice questions to learners, and the advanced features of this tool provide a high level of customisation for Authors as to how the quiz is administered.
\n
 
\n
When the Quiz is complete, LAMS will automatically tally the marks from each learner and display the statistics to sequence monitors.
\n
 
\n
Authors can also choose to release Learner marks directly after they have completed the quiz, as a type of formative assessment or delay releasing the marks until a Sequence Monitor chooses to release them, for Summative Assessment. The Activity also allows learners to view the top, bottom and average marks from the quiz.
\n
 
\n
\n

\"\"Submit Files

\n
The Submit Files Activity provides a vehicle for Authors to collect Student responses which are created in software outside of LAMS.
\n
 
\n
This could be an essay in .DOC or .PDF format, a digital presentation, or some sort of multimedia file.
\n
 
\n
Learners log in to LAMS, and are able to upload their file to the LAMS server as an attachment.  Sequence Monitors can view these files, comment on them and give each individual file a mark, which is in turn accessible by Learners.
\n
 
\n
Like the MCQ, sequence authors can choose to allow learners several attempts at submission, allowing for feedback and creating a formative assessment style, or alternatively, lock the activity after submission, which creates a summative assessment style.
\n
 
\n
\n
 
\n
The next activity is a demonstration Multiple Choice quiz,
\nfollowed by a demonstration Submit Files activity.
','','',0,0,0,'',0,8,'2008-04-10 14:39:45','2008-11-14 13:14:54'),(39,94,'Reflective Activities','
Reflective tools ask learners to analyse their own learning throughout a sequence,
\nor alternatively, collects responses from students and asks them to consider trends in the resulting data.
\n
 
\n
\n
 
\n

\"\" Question and Answer

\n
This activity creates a series of Questions and Short-Answer responses for Learners.
\n
\n

The sequence Author can pen their own responses to each question, which are displayed to learners after they have submitted their own answers.

\n

The activity can also be configured to display answers collected from all learners in the sequence or group.

\n

The Question and Answer Activity allows teachers to pose a question or questions to learners individually, and after they have entered their response, to see the responses of all their peers presented on a single answer screen.

\n
\n
 
\n
\n
\n
 
\n

\"\" Survey

\n
\n

The Survey Tool is similar to Multiple Choice, in that it presents learners with a number of questions and collects their responses. However, unlike Multiple Choice there are no right or wrong answers - the system just collates all answers for analysis by the teacher in the monitoring area.

\n

Question types include single response, multiple response and open text entry, and questions can be mandatory or optional. For multiple choice questions, Learners can also be provided with the option of adding their own answer to a list.

\n
\n
 
\n
\n
\n
 
\n

\"\" Voting

\n
\n

The Voting Activity allows teachers to provide learners with a list of options to "Vote" on. It is similar to the Q&A Activity in that Voting shows first one screen with all the available voting options, then a screen showing the individual learner’s selection, then a screen showing "progressive" voting results (i.e., a non-editable screen where learners can see results from themselves and other learners over time). Finally, there is Summary Screen of group results.

\n
\n
 
\n
\n
 
\n
The next three activities demonstrate the Q&A, Survey and Voting activities.
\n
\n
','','',0,0,0,'',0,8,'2008-04-11 16:26:32','2008-11-14 14:30:21'),(40,99,'Notebook Activity','

\"\"Notebook Activity

\n
The next LAMS activity to look at is the Notebook activity.
\n
 
\n
This activity is a bit special because it can be attached to any LAMS activity at any point in the lesson.
\nEach LAMS activity has an option in Advanced Properties called "attach Notebook with text..."
\n
 
\n
Basically, this allows sequences authors to get Learners to reflect on their knowledge at any point in the sequence - and it’s also really easy for monitors to add a notebook to any activity in a sequence without mucking around with transition lines or changing the shape of the sequence.
\n
 
\n
Of course, the notebook can also be included in sequences as a standalone tool.
\n
 
\n
\n
 
','','',0,0,0,'',0,8,'2008-04-11 16:41:59','2008-11-14 13:51:16'),(41,100,'Data Collection Activity','

\"\" Data Collection

\n
 
\n
The Data Collection tool allows Authors to create database style lists for Learners to populate.
\nEach record list is highly flexible, and the activity can be configured to allow multiple records to exist for each learner.
\n
The next Activity demonstrates the use of Data Collection.
\n
 
\n
\n
 
','','',0,0,0,'',0,8,'2008-11-14 14:26:47','2008-11-14 14:26:47'),(42,102,'CONGRATULATIONS!','

\"\"!!! CONGRATULATIONS !!!

\n

You’ve finished LAMS101:Getting Started!

\n
 
\n
Get out there and start making sequences!
\n
 
\n
Or, if you want some more ideas,
\ncheck out the sequence-sharing goodness
\nat the LAMS Community Website.
\n
 
\n
http://lamscommunity.org/
\n
 
','','',0,0,0,'',0,4,'2008-04-11 16:49:00','2008-11-10 12:54:33'),(43,103,'LAMS Environments','
\"\"
\n

There are four main environments in LAMS

\n

The Learning Environment

\n
\n
The Learning Environment is the ’doing’ of LAMS.
\n
This is what Learners will see when they log in to LAMS and start participating in a sequence.
\n
The Learning Environment displays the sequences that are created in Authoring.
\n

 

\n
\n

The Authoring Environment

\n
The Authoring Environment is where sequences are put together, modified and shared.
\n
It contains all of the LAMS activities, and is where authors create their lesson designs.
\n
 
\n

\n

The Monitoring Environment

\n
Monitors are not necessarily the people who Authored the sequence in the first place - they simply run the lesson for learners, and supervise each learner’s progress through the lesson. In practice, Teachers are often both Authors and Monitors for their class(es) of students.
\n
 
\n

\n

The System Administration Environment

\n
System Administration is for Technical Management of a LAMS server.
\n
 
\n
From here, users with Administration rights can change nearly every aspect of the LAMS software. 
\n

LAMS System Administration is discussed in detail on the Documentation Website.
\nClick here for details [Online Link].

\n
 
\n
\n
\n
\n
\n
 
\n
The next activity will allow you to choose from animated tutorials on each three environments.
','','',0,0,0,'',0,1,'2008-03-27 15:12:18','2008-06-05 11:47:45'),(44,104,'Are You Sure?','

You’ve reached the end of this sequence... but are you sure you want to leave?

\n
 
\n\n \n \n \n \n \n \n \n
\"\"
\n
. .\n
You may have clicked the Next Activity button on the last screen, which would bring you here.
\n
 
\n
If so, and you want to go back and view more of this sequence, double-click the Icon for the Optional Activity in your Progress Bar (see the graphic at right.)
\n
 
\n
Once there, select an option, and click the Choose button.
\n
 
\n
 
\n
 
\n
If you really have finished, and want to leave the sequence, click Next Activity below.
\n
\n
\n
 
\n
\n
 
\n
 
','','',0,0,0,'',0,1,'2008-05-02 11:42:23','2008-05-02 12:05:42'),(45,107,'The Structure of LAMS','

LAMS is arranged hierarchically, with sequences organised into Groups and Subgroups.

\n

What does this mean?

\n
Think of it like this:
\n
 
\n\n \n \n \n \n \n \n \n \n \n \n
\n

In Real Life

\n
\n

In Lams

\n
\n
    \n
  • A Professor teaches a Course, and organises smaller classes.
  • \n
  • Individual Tutors teaches a smaller Class taken from the whole course.
  • \n
  • A Course has at least one lesson plan, that is applied to all students in the course.
  • \n
  • The smaller classes can have at least one specific lesson plan for those students.
  • \n
\n
\n
    \n
  • A Course Manager creates a main Group, and can create several SubGroups.
  • \n
  • Author/Monitors are assigned to one or many Subgroups.
  • \n
  • The Group contains one or more Sequences for all Learners in the Group.
  • \n
  • Likewise, the Subgroup can contain one or many Sequences for those Learners.
  • \n
\n
\n
 
\n
 
\n
There is also the role of Course Administrator. This role allows the user to modify Groups, Subgroups and Learners inside a course. In practice, this is a secretarial role designed to assist the educator running the course.
\n
 
\n
\n

A Working Example

\n
 This image shows the different sections that make up a Group in LAMS.
\n
 
\n
\"\"
\n
 
\n
Click Next Activity to continue.
','','',0,0,0,'',0,5,'2008-05-02 13:38:25','2008-06-06 12:09:41'),(46,108,'The Learning Environment','
 
\n
You’re Using the Learning Environment Right Now!
\n
\n
 
\n
... but if you want to check out more of the features,
\nview the following animations!
\n
 
\n
\n

\nThe First Animation demonstrates a Learner moving through a sequence.
\n
 
\n
The Second Animation deals with the new "no-flash" interface for the Learning Environment
','','',0,0,0,'',0,11,'2008-04-11 17:34:57','2008-05-29 17:16:33'),(47,112,'Creating Your Own Sequences','

LAMS Authoring

\n
LAMS provides you with a visual authoring environment for creating, storing and re-using activity sequences. The drag-and-drop interface is central to the LAMS authoring environment. Teachers drag-and-drop activities into the authoring area and then join the activities together by drawing "Transitions" to produce a learning sequence. This workflow model is what principally distinguishes LAMS from other more content based online learning platforms. LAMS has a wide range of tools designed for use in a range of educational contexts by teachers and students with varying levels of technical expertise.
\n

Benefits of LAMS

\n
Creating a lesson in LAMS means that:
\n
 
\n\n
 
\n
\n
 
\n
\"\" 
\n
The next animation will demonstrate creating a lesson in LAMS.
','','',0,0,0,'',0,11,'2008-04-03 16:11:54','2008-05-29 16:55:57'),(48,115,'LAMS101 - Lesson One','
\n

So What is LAMS?

\n

Congratulations - if you can see this sequence, LAMS is up and running on your server. You’ve also figured out how to log in, and participate in a "sequence" - that’s what we call a collection of LAMS activities.

\n

\n

In a word, that’s what LAMS does - it is a System that Manages sequences of Learning Activities.  A Sequence is an online digital lesson that simulates the classroom environment in a virtual space.

\n

Sequences are first created by Authors, and are then run for different groups of Learners while a Monitor supervises.  We’ll look more at these Roles in LAMS in Lesson Two of LAMS101.

\n

Sequences are made up of activities - each of which has a particular function, either:

\n\n

Informative  Collaborative  Assessment  Reflective

\n
\n

Sequences can include a range of individual tasks, small group work and whole class activities based on both content and collaboration.

\n

When you use LAMS, not only are you creating online activities for your learners, you also create a structured lesson plan at the same time.  We’ll talk about this Visual Authoring Environment in a few moments.

\n

... and what’s with the Sheep?

\n\n

\"dolly

\n

Dolly is our LAMS mascot.  Back when LAMS was being redesigned for version 2.0, it was the "next-generation" of LAMS.  Dolly the sheep was the first mammal to have been successfully cloned from an adult cell, therefore, she was the next generation LAMB (see what we did there?).

\n

Our marvelous designer Shelly is the official mother of Dolly and also our front page model. So all kudos to her!

\n
\n 
\n
To progress to the next activity in this sequence, click the button down here.
','','',0,0,0,'Reflect on noticeboard',0,1,'2008-03-12 16:38:33','2008-06-05 09:52:50'),(49,116,'The tip of the iceberg...','

LAMS has many, many more functions that you can explore.

\n

The new release of version 2.1 includes increased functionality in many areas, some of which are explored in the rest of this Getting Started course.

\n

We Hope You Enjoy Exploring LAMS!

\n

 

\n
 
','','',0,0,0,'',0,1,'2008-04-04 11:30:06','2008-06-05 11:45:40'); /*!40000 ALTER TABLE `tl_lanb11_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lanb11_session` -- DROP TABLE IF EXISTS `tl_lanb11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lanb11_session` ( `uid` bigint(20) NOT NULL auto_increment, `nb_session_id` bigint(20) NOT NULL, `nb_session_name` varchar(255) NOT NULL, `nb_content_uid` bigint(20) NOT NULL, `session_start_date` datetime default NULL, `session_end_date` datetime default NULL, `session_status` varchar(100) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `nb_session_id` (`nb_session_id`), KEY `nb_content_uid` (`nb_content_uid`), CONSTRAINT `FK_tl_lanb11_session_1` FOREIGN KEY (`nb_content_uid`) REFERENCES `tl_lanb11_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lanb11_session` -- LOCK TABLES `tl_lanb11_session` WRITE; /*!40000 ALTER TABLE `tl_lanb11_session` DISABLE KEYS */; INSERT INTO `tl_lanb11_session` VALUES (1,1,'Everybody learners',27,'2009-05-21 17:38:28',NULL,'NOT_ATTEMPTED'),(2,2,'Everybody learners',30,'2009-05-21 17:38:28',NULL,'NOT_ATTEMPTED'),(3,5,'Everybody learners',28,'2009-05-21 17:38:28',NULL,'NOT_ATTEMPTED'),(4,7,'Everybody learners',26,'2009-05-21 17:38:28',NULL,'NOT_ATTEMPTED'),(5,8,'Everybody learners',29,'2009-05-21 17:38:28',NULL,'NOT_ATTEMPTED'),(6,13,'Everybody learners',34,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(7,14,'Everybody learners',32,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(8,15,'Everybody learners',33,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(9,16,'Everybody learners',35,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(10,17,'Everybody learners',38,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(11,18,'Everybody learners',39,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(12,20,'Everybody learners',36,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(13,27,'Everybody learners',37,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(14,28,'Everybody learners',40,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(15,30,'Everybody learners',41,'2009-05-21 17:39:13',NULL,'NOT_ATTEMPTED'),(16,32,'Everybody learners',42,'2009-05-21 17:39:14',NULL,'NOT_ATTEMPTED'),(17,33,'Everybody learners',31,'2009-05-21 17:39:14',NULL,'NOT_ATTEMPTED'),(18,35,'Everybody learners',46,'2009-05-21 17:39:20',NULL,'NOT_ATTEMPTED'),(19,39,'Everybody learners',45,'2009-05-21 17:39:20',NULL,'NOT_ATTEMPTED'),(20,41,'Everybody learners',44,'2009-05-21 17:39:20',NULL,'NOT_ATTEMPTED'),(21,42,'Everybody learners',43,'2009-05-21 17:39:20',NULL,'NOT_ATTEMPTED'),(22,43,'Everybody learners',49,'2009-05-21 17:39:29',NULL,'NOT_ATTEMPTED'),(23,45,'Everybody learners',47,'2009-05-21 17:39:29',NULL,'NOT_ATTEMPTED'),(24,47,'Everybody learners',48,'2009-05-21 17:39:29',NULL,'NOT_ATTEMPTED'); /*!40000 ALTER TABLE `tl_lanb11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lanb11_user` -- DROP TABLE IF EXISTS `tl_lanb11_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lanb11_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `nb_session_uid` bigint(20) NOT NULL, `username` varchar(255) default NULL, `fullname` varchar(255) default NULL, `user_status` varchar(50) default NULL, PRIMARY KEY (`uid`), KEY `nb_session_uid` (`nb_session_uid`), CONSTRAINT `FK_tl_lanb11_user_1` FOREIGN KEY (`nb_session_uid`) REFERENCES `tl_lanb11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lanb11_user` -- LOCK TABLES `tl_lanb11_user` WRITE; /*!40000 ALTER TABLE `tl_lanb11_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lanb11_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lantbk11_attachment` -- DROP TABLE IF EXISTS `tl_lantbk11_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lantbk11_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `notebook_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK12090F57FC940906` (`notebook_uid`), CONSTRAINT `FK12090F57FC940906` FOREIGN KEY (`notebook_uid`) REFERENCES `tl_lantbk11_notebook` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lantbk11_attachment` -- LOCK TABLES `tl_lantbk11_attachment` WRITE; /*!40000 ALTER TABLE `tl_lantbk11_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lantbk11_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lantbk11_conditions` -- DROP TABLE IF EXISTS `tl_lantbk11_conditions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lantbk11_conditions` ( `condition_id` bigint(20) NOT NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`condition_id`), KEY `NotebookConditionToNotebook` (`content_uid`), CONSTRAINT `NotebookConditionInheritance` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `NotebookConditionToNotebook` FOREIGN KEY (`content_uid`) REFERENCES `tl_lantbk11_notebook` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lantbk11_conditions` -- LOCK TABLES `tl_lantbk11_conditions` WRITE; /*!40000 ALTER TABLE `tl_lantbk11_conditions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lantbk11_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lantbk11_notebook` -- DROP TABLE IF EXISTS `tl_lantbk11_notebook`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lantbk11_notebook` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `allow_rich_editor` bit(1) default NULL, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lantbk11_notebook` -- LOCK TABLES `tl_lantbk11_notebook` WRITE; /*!40000 ALTER TABLE `tl_lantbk11_notebook` DISABLE KEYS */; INSERT INTO `tl_lantbk11_notebook` VALUES (1,NULL,NULL,NULL,'Notebook','Instructions',0x00,0x00,0x00,'','',0x00,0x00,8),(2,'2008-11-14 14:32:00','2008-11-10 12:44:29',5,'Notebook Demonstration','
Although this looks like a simple text entry box,  when a notebook is placed in the right spot, it can really get learners to think about what they’ve just learnt.
\n
 
\n
All notebook entries are private between each individual learner and the sequence monitors.
',0x00,0x00,0x00,'','',0x00,0x00,52),(3,'2009-05-21 17:39:13','2008-11-10 12:44:29',5,'Notebook Demonstration','
Although this looks like a simple text entry box,  when a notebook is placed in the right spot, it can really get learners to think about what they’ve just learnt.
\n
 
\n
All notebook entries are private between each individual learner and the sequence monitors.
',0x00,0x00,0x00,'','',0x00,0x00,96); /*!40000 ALTER TABLE `tl_lantbk11_notebook` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lantbk11_session` -- DROP TABLE IF EXISTS `tl_lantbk11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lantbk11_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `notebook_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKB7C198E2FC940906` (`notebook_uid`), CONSTRAINT `FKB7C198E2FC940906` FOREIGN KEY (`notebook_uid`) REFERENCES `tl_lantbk11_notebook` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lantbk11_session` -- LOCK TABLES `tl_lantbk11_session` WRITE; /*!40000 ALTER TABLE `tl_lantbk11_session` DISABLE KEYS */; INSERT INTO `tl_lantbk11_session` VALUES (1,NULL,NULL,NULL,29,'Everybody learners',3); /*!40000 ALTER TABLE `tl_lantbk11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lantbk11_user` -- DROP TABLE IF EXISTS `tl_lantbk11_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lantbk11_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `notebook_session_uid` bigint(20) default NULL, `entry_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKCB8A58FFA3B0FADF` (`notebook_session_uid`), CONSTRAINT `FKCB8A58FFA3B0FADF` FOREIGN KEY (`notebook_session_uid`) REFERENCES `tl_lantbk11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lantbk11_user` -- LOCK TABLES `tl_lantbk11_user` WRITE; /*!40000 ALTER TABLE `tl_lantbk11_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lantbk11_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lapixl10_attachment` -- DROP TABLE IF EXISTS `tl_lapixl10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lapixl10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `pixlr_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK951F889ACB8ADA74` (`pixlr_uid`), CONSTRAINT `FK951F889ACB8ADA74` FOREIGN KEY (`pixlr_uid`) REFERENCES `tl_lapixl10_pixlr` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lapixl10_attachment` -- LOCK TABLES `tl_lapixl10_attachment` WRITE; /*!40000 ALTER TABLE `tl_lapixl10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lapixl10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lapixl10_configuration` -- DROP TABLE IF EXISTS `tl_lapixl10_configuration`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lapixl10_configuration` ( `uid` bigint(20) NOT NULL auto_increment, `config_key` varchar(30) default NULL, `config_value` text, PRIMARY KEY (`uid`), UNIQUE KEY `config_key` (`config_key`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lapixl10_configuration` -- LOCK TABLES `tl_lapixl10_configuration` WRITE; /*!40000 ALTER TABLE `tl_lapixl10_configuration` DISABLE KEYS */; INSERT INTO `tl_lapixl10_configuration` VALUES (1,'LanguageCSV','en,es,fr,de,it,ru,ro,zh-cn,pt-br,sv,pl,th'); /*!40000 ALTER TABLE `tl_lapixl10_configuration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lapixl10_pixlr` -- DROP TABLE IF EXISTS `tl_lapixl10_pixlr`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lapixl10_pixlr` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `reflect_on_activity` bit(1) default NULL, `allow_view_others_images` bit(1) default NULL, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `image_file_name` text, `image_width` bigint(20) default NULL, `image_height` bigint(20) default NULL, `reflect_instructions` text, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lapixl10_pixlr` -- LOCK TABLES `tl_lapixl10_pixlr` WRITE; /*!40000 ALTER TABLE `tl_lapixl10_pixlr` DISABLE KEYS */; INSERT INTO `tl_lapixl10_pixlr` VALUES (1,NULL,NULL,NULL,'Pixlr','Instructions',0x00,0x00,0x00,0x01,'','',0x00,0x00,21,'blank.jpg',400,450,NULL),(2,'2009-05-21 12:22:42','2009-05-14 20:34:59',5,'Pixlr','
\n

Pixlr Online Image Editor

\n
\"\"Pixlr is a powerful online flash-based image editor that can be included as a LAMS activity. The editor has powerful image creation and editing features, and the interface will be familiar to anyone who has used Paint, or more advanced editors like Photoshop or GIMP.
\n
 
\n
We thought it was so cool, we\'ve created a LAMS activity especially for it.
\n
 
\n
    \n
  1. \n
    You can edit the image below by clicking on "Edit Image in Pixlr"
    \n
  2. \n
  3. \n
    The Pixlr web application will load in a new window, and you can play with the image to your hearts content!
    \n
  4. \n
  5. \n
    Once you\'re finished, click File -> Save and Select Save Back to LAMS
    \n
  6. \n
\n
 
\n
(Pixlr has some great online help, available here, which describes how to use all the drawing tools.)
\n
 
\n
This image is from artist SkarNL, and is used here under CC-by-nc-sa.
\n
\n
 
\n
 When you are done, click Next Activity.
\n
',0x00,0x00,0x00,0x00,'','',0x00,0x00,25,'2c94e451216218b80121621af94d0006.jpg',455,500,''),(3,'2009-05-21 17:38:28','2009-05-14 20:34:59',5,'Pixlr','
\n

Pixlr Online Image Editor

\n
\"\"Pixlr is a powerful online flash-based image editor that can be included as a LAMS activity. The editor has powerful image creation and editing features, and the interface will be familiar to anyone who has used Paint, or more advanced editors like Photoshop or GIMP.
\n
 
\n
We thought it was so cool, we\'ve created a LAMS activity especially for it.
\n
 
\n
    \n
  1. \n
    You can edit the image below by clicking on "Edit Image in Pixlr"
    \n
  2. \n
  3. \n
    The Pixlr web application will load in a new window, and you can play with the image to your hearts content!
    \n
  4. \n
  5. \n
    Once you\'re finished, click File -> Save and Select Save Back to LAMS
    \n
  6. \n
\n
 
\n
(Pixlr has some great online help, available here, which describes how to use all the drawing tools.)
\n
 
\n
This image is from artist SkarNL, and is used here under CC-by-nc-sa.
\n
\n
 
\n
 When you are done, click Next Activity.
\n
',0x00,0x00,0x00,0x00,'','',0x00,0x00,77,'2c94e451216218b80121621b5b1a000e.jpg',455,500,''); /*!40000 ALTER TABLE `tl_lapixl10_pixlr` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lapixl10_session` -- DROP TABLE IF EXISTS `tl_lapixl10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lapixl10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `pixlr_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKE5C05E7FCB8ADA74` (`pixlr_uid`), CONSTRAINT `FKE5C05E7FCB8ADA74` FOREIGN KEY (`pixlr_uid`) REFERENCES `tl_lapixl10_pixlr` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lapixl10_session` -- LOCK TABLES `tl_lapixl10_session` WRITE; /*!40000 ALTER TABLE `tl_lapixl10_session` DISABLE KEYS */; INSERT INTO `tl_lapixl10_session` VALUES (1,NULL,NULL,NULL,4,'Everybody learners',3); /*!40000 ALTER TABLE `tl_lapixl10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lapixl10_user` -- DROP TABLE IF EXISTS `tl_lapixl10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lapixl10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `pixlr_session_uid` bigint(20) default NULL, `entry_uid` bigint(20) default NULL, `image_file_name` text, `imageHeight` bigint(20) default NULL, `imageWidth` bigint(20) default NULL, `imageHidden` bit(1) default NULL, PRIMARY KEY (`uid`), KEY `FK9A39C08236E23005` (`pixlr_session_uid`), CONSTRAINT `FK9A39C08236E23005` FOREIGN KEY (`pixlr_session_uid`) REFERENCES `tl_lapixl10_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lapixl10_user` -- LOCK TABLES `tl_lapixl10_user` WRITE; /*!40000 ALTER TABLE `tl_lapixl10_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lapixl10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_condition_questions` -- DROP TABLE IF EXISTS `tl_laqa11_condition_questions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_condition_questions` ( `condition_id` bigint(20) NOT NULL default '0', `question_uid` bigint(20) NOT NULL default '0', PRIMARY KEY (`condition_id`,`question_uid`), KEY `QaConditionQuestionToQaQuestion` (`question_uid`), CONSTRAINT `QaConditionQuestionToQaCondition` FOREIGN KEY (`condition_id`) REFERENCES `tl_laqa11_conditions` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `QaConditionQuestionToQaQuestion` FOREIGN KEY (`question_uid`) REFERENCES `tl_laqa11_que_content` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_condition_questions` -- LOCK TABLES `tl_laqa11_condition_questions` WRITE; /*!40000 ALTER TABLE `tl_laqa11_condition_questions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laqa11_condition_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_conditions` -- DROP TABLE IF EXISTS `tl_laqa11_conditions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_conditions` ( `condition_id` bigint(20) NOT NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`condition_id`), KEY `QaConditionToQaContent` (`content_uid`), CONSTRAINT `QaConditionInheritance` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `QaConditionToQaContent` FOREIGN KEY (`content_uid`) REFERENCES `tl_laqa11_content` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_conditions` -- LOCK TABLES `tl_laqa11_conditions` WRITE; /*!40000 ALTER TABLE `tl_laqa11_conditions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laqa11_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_configuration` -- DROP TABLE IF EXISTS `tl_laqa11_configuration`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_configuration` ( `uid` bigint(20) NOT NULL auto_increment, `config_key` varchar(30) default NULL, `config_value` varchar(255) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `config_key` (`config_key`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_configuration` -- LOCK TABLES `tl_laqa11_configuration` WRITE; /*!40000 ALTER TABLE `tl_laqa11_configuration` DISABLE KEYS */; INSERT INTO `tl_laqa11_configuration` VALUES (1,'enableQaWizard','false'); /*!40000 ALTER TABLE `tl_laqa11_configuration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_content` -- DROP TABLE IF EXISTS `tl_laqa11_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_content` ( `uid` bigint(20) NOT NULL auto_increment, `qa_content_id` bigint(20) NOT NULL, `title` text, `instructions` text, `creation_date` datetime default NULL, `update_date` datetime default NULL, `reflect` tinyint(1) NOT NULL default '0', `questions_sequenced` tinyint(1) NOT NULL default '0', `username_visible` tinyint(1) NOT NULL default '0', `created_by` bigint(20) NOT NULL default '0', `run_offline` tinyint(1) default '0', `define_later` tinyint(1) NOT NULL default '0', `synch_in_monitor` tinyint(1) NOT NULL default '0', `offline_instructions` text, `online_instructions` text, `content_inUse` tinyint(1) default '0', `reflectionSubject` text, `lockWhenFinished` tinyint(1) NOT NULL default '1', `showOtherAnswers` tinyint(1) NOT NULL default '1', `allow_rich_editor` tinyint(1) NOT NULL default '0', PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_content` -- LOCK TABLES `tl_laqa11_content` WRITE; /*!40000 ALTER TABLE `tl_laqa11_content` DISABLE KEYS */; INSERT INTO `tl_laqa11_content` VALUES (1,3,'Q&A','Instructions','2009-05-21 17:32:58',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,0,1,0),(2,44,'Question and Answer Demonstration','

\"\"This is the Q&A Activity

\n
 
\n
Up here is a space for Author instructions for Learners, and below is the list of Questions.
\n
 
\n
Have a crack at answering them, and then watch what happens over the following screens.
',NULL,'2008-11-14 14:30:09',0,0,0,5,0,0,0,'','',0,'',0,1,0),(3,98,'Question and Answer Demonstration','

\"\"This is the Q&A Activity

\n
 
\n
Up here is a space for Author instructions for Learners, and below is the list of Questions.
\n
 
\n
Have a crack at answering them, and then watch what happens over the following screens.
',NULL,'2008-11-14 14:30:09',0,0,0,5,0,0,0,'','',0,'',0,1,0); /*!40000 ALTER TABLE `tl_laqa11_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_que_content` -- DROP TABLE IF EXISTS `tl_laqa11_que_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_que_content` ( `uid` bigint(20) NOT NULL auto_increment, `question` text, `feedback` text, `display_order` int(5) default '1', `qa_content_id` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `qa_content_id` (`qa_content_id`), CONSTRAINT `FK_tl_laqa11_que_content_1` FOREIGN KEY (`qa_content_id`) REFERENCES `tl_laqa11_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_que_content` -- LOCK TABLES `tl_laqa11_que_content` WRITE; /*!40000 ALTER TABLE `tl_laqa11_que_content` DISABLE KEYS */; INSERT INTO `tl_laqa11_que_content` VALUES (1,'Sample Question 1?',NULL,1,1),(2,'
What do you like best so far about LAMS?
\n

\n
','This is the feedback section - it allows Authors and Monitors to give a short response to each question.
This is incredibly useful for formative assessment and learning techniques.',1,2),(3,'
Do you think you can apply LAMS to your own teaching styles?
','',2,2),(4,'
What do you like best so far about LAMS?
\n

\n
','This is the feedback section - it allows Authors and Monitors to give a short response to each question.
This is incredibly useful for formative assessment and learning techniques.',1,3),(5,'
Do you think you can apply LAMS to your own teaching styles?
','',2,3); /*!40000 ALTER TABLE `tl_laqa11_que_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_que_usr` -- DROP TABLE IF EXISTS `tl_laqa11_que_usr`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_que_usr` ( `uid` bigint(20) NOT NULL auto_increment, `que_usr_id` bigint(20) NOT NULL, `username` varchar(255) default NULL, `responseFinalized` tinyint(1) NOT NULL default '0', `qa_session_id` bigint(20) NOT NULL, `fullname` varchar(255) default NULL, `learnerFinished` tinyint(1) NOT NULL, PRIMARY KEY (`uid`), KEY `qa_session_id` (`qa_session_id`), CONSTRAINT `FK_tl_laqa11_que_usr_1` FOREIGN KEY (`qa_session_id`) REFERENCES `tl_laqa11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_que_usr` -- LOCK TABLES `tl_laqa11_que_usr` WRITE; /*!40000 ALTER TABLE `tl_laqa11_que_usr` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laqa11_que_usr` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_session` -- DROP TABLE IF EXISTS `tl_laqa11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_session` ( `uid` bigint(20) NOT NULL auto_increment, `qa_session_id` bigint(20) NOT NULL, `session_start_date` datetime default NULL, `session_end_date` datetime default NULL, `session_name` varchar(100) default NULL, `session_status` varchar(100) default NULL, `qa_content_id` bigint(20) NOT NULL, PRIMARY KEY (`uid`), KEY `qa_content_id` (`qa_content_id`), CONSTRAINT `FK_tl_laqa11_session_1` FOREIGN KEY (`qa_content_id`) REFERENCES `tl_laqa11_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_session` -- LOCK TABLES `tl_laqa11_session` WRITE; /*!40000 ALTER TABLE `tl_laqa11_session` DISABLE KEYS */; INSERT INTO `tl_laqa11_session` VALUES (1,21,'2009-05-21 17:39:13',NULL,'Everybody learners','INCOMPLETE',3); /*!40000 ALTER TABLE `tl_laqa11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_uploadedfile` -- DROP TABLE IF EXISTS `tl_laqa11_uploadedfile`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_uploadedfile` ( `submissionId` bigint(20) NOT NULL auto_increment, `uuid` varchar(255) NOT NULL, `isOnline_File` tinyint(1) NOT NULL, `filename` varchar(255) NOT NULL, `qa_content_id` bigint(20) NOT NULL, PRIMARY KEY (`submissionId`), KEY `qa_content_id` (`qa_content_id`), CONSTRAINT `FK_tl_laqa11_uploadedfile_1` FOREIGN KEY (`qa_content_id`) REFERENCES `tl_laqa11_content` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_uploadedfile` -- LOCK TABLES `tl_laqa11_uploadedfile` WRITE; /*!40000 ALTER TABLE `tl_laqa11_uploadedfile` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laqa11_uploadedfile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_usr_resp` -- DROP TABLE IF EXISTS `tl_laqa11_usr_resp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_usr_resp` ( `response_id` bigint(20) NOT NULL auto_increment, `hidden` tinyint(1) default '0', `answer` text, `time_zone` varchar(255) default NULL, `attempt_time` datetime default NULL, `que_usr_id` bigint(20) NOT NULL, `qa_que_content_id` bigint(20) NOT NULL, `visible` tinyint(1) NOT NULL default '1', PRIMARY KEY (`response_id`), KEY `que_usr_id` (`que_usr_id`), KEY `qa_que_content_id` (`qa_que_content_id`), CONSTRAINT `FK_tl_laqa11_usr_resp_3` FOREIGN KEY (`que_usr_id`) REFERENCES `tl_laqa11_que_usr` (`uid`), CONSTRAINT `FK_tl_laqa11_usr_resp_2` FOREIGN KEY (`qa_que_content_id`) REFERENCES `tl_laqa11_que_content` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_usr_resp` -- LOCK TABLES `tl_laqa11_usr_resp` WRITE; /*!40000 ALTER TABLE `tl_laqa11_usr_resp` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_laqa11_usr_resp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_wizard_category` -- DROP TABLE IF EXISTS `tl_laqa11_wizard_category`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_wizard_category` ( `uid` bigint(20) NOT NULL auto_increment, `title` varchar(255) NOT NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_wizard_category` -- LOCK TABLES `tl_laqa11_wizard_category` WRITE; /*!40000 ALTER TABLE `tl_laqa11_wizard_category` DISABLE KEYS */; INSERT INTO `tl_laqa11_wizard_category` VALUES (1,'Data%20Collection'),(2,'Data%20Organization'),(3,'Data%20Analysis'),(4,'Data%20Transcendence'); /*!40000 ALTER TABLE `tl_laqa11_wizard_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_wizard_cognitive_skill` -- DROP TABLE IF EXISTS `tl_laqa11_wizard_cognitive_skill`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_wizard_cognitive_skill` ( `uid` bigint(20) NOT NULL auto_increment, `title` varchar(255) NOT NULL, `category_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK3BA4132BCBB0DC8D` (`category_uid`), CONSTRAINT `FK3BA4132BCBB0DC8D` FOREIGN KEY (`category_uid`) REFERENCES `tl_laqa11_wizard_category` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_wizard_cognitive_skill` -- LOCK TABLES `tl_laqa11_wizard_cognitive_skill` WRITE; /*!40000 ALTER TABLE `tl_laqa11_wizard_cognitive_skill` DISABLE KEYS */; INSERT INTO `tl_laqa11_wizard_cognitive_skill` VALUES (1,'2.%20Recognition',1),(2,'1.%20Observation',1),(3,'3.%20Recall',1),(4,'Ordering',2),(5,'Comparison',2),(6,'Hierarchy',2),(7,'Classification',2),(8,'Distinction%20between%20facts%20%26%20opinions/judgments',3),(9,'Analysis%20of%20basic%20parts',3),(10,'Clarification',3),(11,'Flush%20out%20relationships',3),(12,'Pattern%20recognition',3),(13,'Error%20and%20conflict%20detection',4),(14,'Summary',4),(15,'Reflection',4),(16,'Hypothesis',4),(17,'Prediction',4),(18,'Explanation',4),(19,'Empathy',4),(20,'Knowledge%20Organization',4),(21,'Application%20and%20Improvement',4),(22,'Assessment/Evaluation',4),(23,'Verification',4),(24,'Conclusion',4); /*!40000 ALTER TABLE `tl_laqa11_wizard_cognitive_skill` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_laqa11_wizard_question` -- DROP TABLE IF EXISTS `tl_laqa11_wizard_question`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_laqa11_wizard_question` ( `uid` bigint(20) NOT NULL auto_increment, `cognitive_skill_uid` bigint(20) default NULL, `title` text NOT NULL, PRIMARY KEY (`uid`), KEY `FKAF08A0C7EFF77FD4` (`cognitive_skill_uid`), CONSTRAINT `FKAF08A0C7EFF77FD4` FOREIGN KEY (`cognitive_skill_uid`) REFERENCES `tl_laqa11_wizard_cognitive_skill` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_laqa11_wizard_question` -- LOCK TABLES `tl_laqa11_wizard_question` WRITE; /*!40000 ALTER TABLE `tl_laqa11_wizard_question` DISABLE KEYS */; INSERT INTO `tl_laqa11_wizard_question` VALUES (1,1,'Please%20identify%u2026'),(2,2,'What%20do%20you%20observe%20...'),(3,2,'What%20do%20you%20see%u2026%3F'),(4,3,'Give%20the%20definition%20of%u2026'),(5,3,'What%20is%20the%20meaning%20of%u2026%3F'),(6,3,'What%20has%20been%20said%20by%u2026%20about%u2026%3F'),(7,4,'Find%20a%20criterion%20to%20order%20these%u2026'),(8,4,'Order%20these%u2026'),(9,4,'Find%20the%205%20biggest/smallest%20%u2026'),(10,5,'Compare%20these%u2026%20using%20the%20following%20criteria%u2026'),(11,5,'Find%20the%20pros%20and%20cons%20of%u2026'),(12,5,'Find%20both%20the%20similarities%20and%20the%20differences%20between..%20and%u2026'),(13,6,'Arrange%20these%u2026by%20the%20following%20criterion%u2026'),(14,6,'Sort%20these%u2026%20by%20the%20following%20criterion%u2026'),(15,6,'Put%20these%u2026in%20an%20ascending/descending%20sequence%u2026'),(16,7,'Group%20these%20elements%20using%20the%20following%20criteria%u2026'),(17,7,'Find%20the%20pros%20and%20cons%20of%20these%u2026solutions'),(18,7,'Find%205%20%20advantages%20and%203%20disadvantages%20%20of%20%u2026'),(19,8,'Clarify%20whether%20this%20%u2026describes%20a%20fact%20or%20if%20it%20is%20a%20personal%20opinion'),(20,8,'Provide%20more%20than%20one%20view%20about%20the%20following%u2026'),(21,8,'Provide%20logical%20arguments%20to%20support%20the%20following%20statement'),(22,9,'Identify%20the%20parts/units/characteristics%20of%u2026'),(23,9,'Define%20the%20data%20given%20and%20the%20objectives%20of%u2026.'),(24,9,'Refer%20to%20the%20appropriate%20phases%20of%20the%20solution%20plan%20for%u2026'),(25,10,'What%20do%20we%20mean%20by%u2026%3F'),(26,10,'Provide%20an%20example%20to%20clarify%u2026'),(27,10,'When%20does%20this%u2026have%20a%20meaning%u2026%3F'),(28,11,'Distinguish%20possible%20relationships%20among%20the%20data%u2026'),(29,11,'Is%20there%20any%20reason%20that%20affects%20this%20phenomenon%u2026%3F'),(30,11,'Is%20there%20any%20structure%20within%u2026%3F'),(31,12,'Is%20there%20any%20pattern%20that%20is%20repeated%20in%u2026%3F'),(32,12,'Find%20out%20what%20is%20common%20in%u2026'),(33,12,'Find%20out%20what%20is%20similar%20in%u2026'),(34,13,'Point%20out%20the%20mistakes%20of/in%u2026'),(35,13,'Are%20there%20any%20contradictions%20in%u2026%3F'),(36,13,'What%20is%20missing%20in%u2026%3F'),(37,14,'Form%20an%20abstract%20of%20%u2026%28number%29%20words%20to%20describe%u2026'),(38,14,'Which%20are%20the%20main%20points%20of%20%u2026'),(39,14,'Which%20are%20the%20top%205%20essential%20points%20of%20%u2026'),(40,15,'What%20have%20you%20learnt%20about%u2026%3F'),(41,15,'Are%20there%20any%20points%20that%20you%u2026%3F'),(42,16,'If%20%u2026%20then%u2026'),(43,17,'Could%20you%20make%20any%20predictions%20about%u2026%3F'),(44,17,'If%20we%20do%u2026then%20what%20will%20happen%3F'),(45,17,'In%20the%20case%20of%u2026find%20out%u2026'),(46,18,'Please%20explain%20how%20the%20meaning%20of%u2026'),(47,18,'Please%20explain%20why%20the%20meaning%20of/%u2026'),(48,18,'Please%20explain%20what%20the%20meaning%20of%20%u2026'),(49,18,'Please%20explain%20in%20your%20own%20words%u2026'),(50,18,'Please%20explain%20in%20your%20own%20words%u2026'),(51,19,'Could%20you%20accept%20the%20role%20of%u2026%3F'),(52,19,'What%20are%20the%20possible%20arguments%20of%20others%20for%u2026%3F'),(53,19,'What%20would%20be%20your%20answer%20if%20you%20were%20in%20the%20position%20of%u2026%3F'),(54,20,'Make%20a%20hierarchical%20tree%20to%20describe%u2026'),(55,20,'Can%20you%20form%20a%20sequential%20structure%20of%u2026%3F'),(56,20,'Characterize%20it%20according%20to%20the%20following%20criteria%u2026'),(57,21,'How%20can%20you%20improve%20this%u2026in%20order%20to%u2026%3F'),(58,21,'How%20can%20you%20apply%20this%u2026in%20order%20to%u2026%3F'),(59,22,'Assess%20this%u2026'),(60,22,'Evaluate%20the%u2026'),(61,22,'What%20kind%20of%20criteria%20can%20you%20use%20to%20evaluate%20the%u2026%3F'),(62,23,'Please%20verify%20that%u2026'),(63,23,'Please%20confirm%20that%u2026'),(64,24,'Based%20on%20this%u2026what%20do%20you%20conclude%3F'),(65,24,'Based%20on%20these%u2026what%20do%20you%20conclude%3F'),(66,24,'Are%20there%20any%20exceptions%20to%u2026%3F'),(67,24,'Are%20there%20any%20weak%20points%20in%u2026%3F'); /*!40000 ALTER TABLE `tl_laqa11_wizard_question` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_larsrc11_attachment` -- DROP TABLE IF EXISTS `tl_larsrc11_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_larsrc11_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `resource_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK1E7009430E79035` (`resource_uid`), CONSTRAINT `FK1E7009430E79035` FOREIGN KEY (`resource_uid`) REFERENCES `tl_larsrc11_resource` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_larsrc11_attachment` -- LOCK TABLES `tl_larsrc11_attachment` WRITE; /*!40000 ALTER TABLE `tl_larsrc11_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_larsrc11_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_larsrc11_item_instruction` -- DROP TABLE IF EXISTS `tl_larsrc11_item_instruction`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_larsrc11_item_instruction` ( `uid` bigint(20) NOT NULL auto_increment, `description` varchar(255) default NULL, `sequence_id` int(11) default NULL, `item_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKA5665013980570ED` (`item_uid`), CONSTRAINT `FKA5665013980570ED` FOREIGN KEY (`item_uid`) REFERENCES `tl_larsrc11_resource_item` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_larsrc11_item_instruction` -- LOCK TABLES `tl_larsrc11_item_instruction` WRITE; /*!40000 ALTER TABLE `tl_larsrc11_item_instruction` DISABLE KEYS */; INSERT INTO `tl_larsrc11_item_instruction` VALUES (1,'Use Google to search the web',0,1),(2,'In this animation, you will learn how to use the features of the Noticeboard Activity.',0,2),(3,'This animation explains how to create and use a Resource Sharing activity.',0,3),(4,'This is our online documentation website. Here you can find the specifications for what kind of files can be added to a Resource Sharing activity.',0,4),(5,'This animation describes the basics of the Monitoring environment.',0,8),(6,'You will need an active internet connection to view this web page.',0,9),(7,'You might need to resize your browser to see the whole animation.',0,10),(8,'When the animation has completed, click Finished to move to the next activity.',1,10),(9,'When the animation has stopped, click Finished to go to the next activity. ',1,11),(10,'This animation will demonstrate the Learner\'s Experience when using LAMS. You might need to resize your browser to see the whole animation.',0,11),(11,'When the animation has stopped, click ',1,12),(12,'LAMS 2.1 lets you disable FLASH for the Learning Environment - this is useful if you want to use LAMS on devices that do not support flash.',0,12),(13,'You might need to resize your internet browser to see the whole animation.',0,13),(14,'When the animation is complete, click Finished to go to the next activity.',1,13),(15,'When the animation has stopped, click Finished to go to the next activity.',1,14),(16,'This animation gives a brief overview of LAMS.',0,14),(17,'This animation explains how to create and use a Resource Sharing activity.',0,15),(18,'This is our online documentation website. Here you can find the specifications for what kind of files can be added to a Resource Sharing activity.',0,16),(19,'In this animation, you will learn how to use the features of the Noticeboard Activity.',0,17),(20,'You will need an active internet connection to view this web page.',0,21),(21,'This animation describes the basics of the Monitoring environment.',0,22),(22,'When the animation has stopped, click ',1,23),(23,'LAMS 2.1 lets you disable FLASH for the Learning Environment - this is useful if you want to use LAMS on devices that do not support flash.',0,23),(24,'This animation will demonstrate the Learner\'s Experience when using LAMS. You might need to resize your browser to see the whole animation.',0,24),(25,'When the animation has stopped, click Finished to go to the next activity. ',1,24),(26,'You might need to resize your browser to see the whole animation.',0,25),(27,'When the animation has completed, click Finished to move to the next activity.',1,25),(28,'When the animation is complete, click Finished to go to the next activity.',1,26),(29,'You might need to resize your internet browser to see the whole animation.',0,26),(30,'When the animation has stopped, click Finished to go to the next activity.',1,27),(31,'This animation gives a brief overview of LAMS.',0,27); /*!40000 ALTER TABLE `tl_larsrc11_item_instruction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_larsrc11_item_log` -- DROP TABLE IF EXISTS `tl_larsrc11_item_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_larsrc11_item_log` ( `uid` bigint(20) NOT NULL auto_increment, `access_date` datetime default NULL, `resource_item_uid` bigint(20) default NULL, `user_uid` bigint(20) default NULL, `complete` tinyint(4) default NULL, `session_id` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK693580A438BF8DFE` (`resource_item_uid`), KEY `FK693580A441F9365D` (`user_uid`), CONSTRAINT `FK693580A441F9365D` FOREIGN KEY (`user_uid`) REFERENCES `tl_larsrc11_user` (`uid`), CONSTRAINT `FK693580A438BF8DFE` FOREIGN KEY (`resource_item_uid`) REFERENCES `tl_larsrc11_resource_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_larsrc11_item_log` -- LOCK TABLES `tl_larsrc11_item_log` WRITE; /*!40000 ALTER TABLE `tl_larsrc11_item_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_larsrc11_item_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_larsrc11_resource` -- DROP TABLE IF EXISTS `tl_larsrc11_resource`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_larsrc11_resource` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `run_offline` tinyint(4) default NULL, `lock_on_finished` tinyint(4) default NULL, `instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` tinyint(4) default NULL, `define_later` tinyint(4) default NULL, `content_id` bigint(20) default NULL, `allow_add_files` tinyint(4) default NULL, `allow_add_urls` tinyint(4) default NULL, `mini_view_resource_number` int(11) default NULL, `allow_auto_run` tinyint(4) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` smallint(6) default NULL, `assigment_submit_notify` tinyint(4) default '0', PRIMARY KEY (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `FK89093BF758092FB` (`create_by`), CONSTRAINT `FK89093BF758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_larsrc11_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_larsrc11_resource` -- LOCK TABLES `tl_larsrc11_resource` WRITE; /*!40000 ALTER TABLE `tl_larsrc11_resource` DISABLE KEYS */; INSERT INTO `tl_larsrc11_resource` VALUES (1,NULL,NULL,NULL,'Resources',0,0,'Instructions ',NULL,NULL,0,0,6,0,0,0,0,NULL,0,0),(2,NULL,'2008-04-11 15:35:40',1,'Resource Sharing',0,0,'

This is a Resource Sharing Activity.

\n
You can see that the list below contains a URL, and several Zipped Websites.
\n
 
\n
Explore the resources below, and then try adding your own URL to the list -
\nsimply fill in the fields below, marked "Suggest a new URL"
\nand then click the Add button.
\n
 
','','',0,0,34,0,1,0,0,'',0,0),(3,'2008-04-11 16:01:40','2008-04-11 16:01:40',2,'Resources on LAMS',0,0,'

Here are some interesting websites about LAMS!

\n

\n
','','',0,0,41,0,0,0,0,'',0,0),(4,NULL,'2008-06-06 11:52:30',3,'Monitor Wink',0,0,'
Instructions
','','',0,0,59,0,0,0,1,'',0,0),(5,NULL,'2008-06-06 11:53:51',4,'Resources',0,0,'
Instructions
','','',0,0,60,0,0,0,1,'',0,0),(6,NULL,'2008-06-06 10:56:27',5,'Resources',0,0,'
Instructions
','','',0,0,61,0,0,0,1,'',0,0),(7,NULL,'2008-06-05 12:03:37',6,'Learning Environment',0,0,'','','',0,0,62,0,0,0,1,'',0,0),(8,NULL,'2008-06-05 12:32:17',7,'Resources',0,0,'
Instructions
','','',0,0,64,0,0,0,1,'',0,0),(9,NULL,'2008-06-05 11:45:33',8,'Resources',0,0,'
Instructions
','','',0,0,67,0,0,0,1,'',0,0),(10,NULL,'2008-06-05 10:37:56',9,'So What Is LAMS?',0,0,'
','','',0,0,69,0,0,0,1,'',0,0),(11,NULL,'2008-04-11 15:35:40',10,'Resource Sharing',0,0,'

This is a Resource Sharing Activity.

\n
You can see that the list below contains a URL, and several Zipped Websites.
\n
 
\n
Explore the resources below, and then try adding your own URL to the list -
\nsimply fill in the fields below, marked "Suggest a new URL"
\nand then click the Add button.
\n
 
','','',0,0,81,0,1,0,0,'',0,0),(12,'2008-04-11 16:01:40','2008-04-11 16:01:40',11,'Resources on LAMS',0,0,'

Here are some interesting websites about LAMS!

\n

\n
','','',0,0,87,0,0,0,0,'',0,0),(13,NULL,'2008-06-06 11:53:51',12,'Resources',0,0,'
Instructions
','','',0,0,105,0,0,0,1,'',0,0),(14,NULL,'2008-06-06 11:52:30',13,'Monitor Wink',0,0,'
Instructions
','','',0,0,106,0,0,0,1,'',0,0),(15,NULL,'2008-06-05 12:32:17',14,'Resources',0,0,'
Instructions
','','',0,0,109,0,0,0,1,'',0,0),(16,NULL,'2008-06-05 12:03:37',15,'Learning Environment',0,0,'','','',0,0,110,0,0,0,1,'',0,0),(17,NULL,'2008-06-06 10:56:27',16,'Resources',0,0,'
Instructions
','','',0,0,111,0,0,0,1,'',0,0),(18,NULL,'2008-06-05 11:45:33',17,'Resources',0,0,'
Instructions
','','',0,0,113,0,0,0,1,'',0,0),(19,NULL,'2008-06-05 10:37:56',18,'So What Is LAMS?',0,0,'
','','',0,0,114,0,0,0,1,'',0,0); /*!40000 ALTER TABLE `tl_larsrc11_resource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_larsrc11_resource_item` -- DROP TABLE IF EXISTS `tl_larsrc11_resource_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_larsrc11_resource_item` ( `uid` bigint(20) NOT NULL auto_increment, `file_uuid` bigint(20) default NULL, `file_version_id` bigint(20) default NULL, `description` varchar(255) default NULL, `ims_schema` varchar(255) default NULL, `init_item` varchar(255) default NULL, `organization_xml` text, `title` varchar(255) default NULL, `url` text, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, `create_by_author` tinyint(4) default NULL, `is_hide` tinyint(4) default NULL, `item_type` smallint(6) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `open_url_new_window` tinyint(4) default NULL, `resource_uid` bigint(20) default NULL, `session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKF52D1F93758092FB` (`create_by`), KEY `FKF52D1F9330E79035` (`resource_uid`), KEY `FKF52D1F93EC0D3147` (`session_uid`), CONSTRAINT `FKF52D1F93EC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_larsrc11_session` (`uid`), CONSTRAINT `FKF52D1F9330E79035` FOREIGN KEY (`resource_uid`) REFERENCES `tl_larsrc11_resource` (`uid`), CONSTRAINT `FKF52D1F93758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_larsrc11_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_larsrc11_resource_item` -- LOCK TABLES `tl_larsrc11_resource_item` WRITE; /*!40000 ALTER TABLE `tl_larsrc11_resource_item` DISABLE KEYS */; INSERT INTO `tl_larsrc11_resource_item` VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,'Web Search','http://www.google.com ',NULL,'2009-05-21 17:33:17',1,0,1,NULL,NULL,0,1,NULL),(2,10,1,NULL,NULL,'index.htm',NULL,'LAMS Tutorial - Noticeboard',NULL,1,'2008-04-10 13:52:15',1,0,3,'application/x-zip-compressed','lanb11.zip',0,2,NULL),(3,14,1,NULL,NULL,'index.htm',NULL,'LAMS Tutorial - Resource Sharing',NULL,1,'2008-04-10 13:52:47',1,0,3,'application/x-zip-compressed','lasrsc11.zip',0,2,NULL),(4,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS Wiki - Resource Sharing [online]','http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11',1,'2008-04-10 13:51:46',1,0,1,NULL,NULL,0,2,NULL),(5,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS 2008 Conference - Cadiz, Spain','http://lams2008.lamsfoundation.org/',2,'2008-04-11 16:00:59',1,0,1,NULL,NULL,1,3,NULL),(6,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS Documentation Website','http://wiki.lamsfoundation.org/display/lamsdocs/Home',2,'2008-04-11 16:00:25',1,0,1,NULL,NULL,1,3,NULL),(7,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS 2007 European Conference - London, UK','http://lams2007.lamsfoundation.org/',2,'2008-04-11 16:01:31',1,0,1,NULL,NULL,1,3,NULL),(8,18,1,NULL,NULL,'index.htm',NULL,'Monitor Wink',NULL,3,'2008-04-11 12:16:58',1,0,3,'application/x-zip-compressed','introToMonitor.zip',0,4,NULL),(9,NULL,NULL,NULL,NULL,NULL,NULL,'Lams Wiki - System Administration [Online]','http://wiki.lamsfoundation.org/display/lamsdocs/System+Administration/',4,'2008-03-12 16:39:41',1,0,1,NULL,NULL,0,5,NULL),(10,22,1,NULL,NULL,'index.htm',NULL,'Authoring Environment',NULL,5,'2008-04-11 15:01:31',1,0,3,'application/x-zip-compressed','introToAuthoring.zip',0,6,NULL),(11,26,1,NULL,NULL,'index.htm',NULL,'Learner\'s Experience',NULL,6,'2008-05-02 16:38:53',1,0,3,'application/zip','learnerExperience.zip',0,7,NULL),(12,30,1,NULL,NULL,'index.htm',NULL,'No Flash Learner Environment',NULL,7,'2008-04-11 17:36:30',1,0,3,'application/zip','noflash.zip',0,8,NULL),(13,34,1,NULL,NULL,'index.htm',NULL,'Introduction to Authoring',NULL,8,'2008-04-04 11:25:16',1,0,3,'application/zip','effective_authoring.zip',0,9,NULL),(14,38,1,NULL,NULL,'index.htm',NULL,'Introducing LAMS!',NULL,9,'2008-06-05 10:35:56',1,0,3,'application/zip','lams101-effective learning.zip',0,10,NULL),(15,14,1,NULL,NULL,'index.htm',NULL,'LAMS Tutorial - Resource Sharing',NULL,10,'2008-04-10 13:52:47',1,0,3,'application/x-zip-compressed','lasrsc11.zip',0,11,NULL),(16,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS Wiki - Resource Sharing [online]','http://wiki.lamsfoundation.org/display/lamsdocs/larsrc11',10,'2008-04-10 13:51:46',1,0,1,NULL,NULL,0,11,NULL),(17,10,1,NULL,NULL,'index.htm',NULL,'LAMS Tutorial - Noticeboard',NULL,10,'2008-04-10 13:52:15',1,0,3,'application/x-zip-compressed','lanb11.zip',0,11,NULL),(18,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS 2008 Conference - Cadiz, Spain','http://lams2008.lamsfoundation.org/',11,'2008-04-11 16:00:59',1,0,1,NULL,NULL,1,12,NULL),(19,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS Documentation Website','http://wiki.lamsfoundation.org/display/lamsdocs/Home',11,'2008-04-11 16:00:25',1,0,1,NULL,NULL,1,12,NULL),(20,NULL,NULL,NULL,NULL,NULL,NULL,'LAMS 2007 European Conference - London, UK','http://lams2007.lamsfoundation.org/',11,'2008-04-11 16:01:31',1,0,1,NULL,NULL,1,12,NULL),(21,NULL,NULL,NULL,NULL,NULL,NULL,'Lams Wiki - System Administration [Online]','http://wiki.lamsfoundation.org/display/lamsdocs/System+Administration/',12,'2008-03-12 16:39:41',1,0,1,NULL,NULL,0,13,NULL),(22,18,1,NULL,NULL,'index.htm',NULL,'Monitor Wink',NULL,13,'2008-04-11 12:16:58',1,0,3,'application/x-zip-compressed','introToMonitor.zip',0,14,NULL),(23,30,1,NULL,NULL,'index.htm',NULL,'No Flash Learner Environment',NULL,14,'2008-04-11 17:36:30',1,0,3,'application/zip','noflash.zip',0,15,NULL),(24,26,1,NULL,NULL,'index.htm',NULL,'Learner\'s Experience',NULL,15,'2008-05-02 16:38:53',1,0,3,'application/zip','learnerExperience.zip',0,16,NULL),(25,22,1,NULL,NULL,'index.htm',NULL,'Authoring Environment',NULL,16,'2008-04-11 15:01:31',1,0,3,'application/x-zip-compressed','introToAuthoring.zip',0,17,NULL),(26,34,1,NULL,NULL,'index.htm',NULL,'Introduction to Authoring',NULL,17,'2008-04-04 11:25:16',1,0,3,'application/zip','effective_authoring.zip',0,18,NULL),(27,38,1,NULL,NULL,'index.htm',NULL,'Introducing LAMS!',NULL,18,'2008-06-05 10:35:56',1,0,3,'application/zip','lams101-effective learning.zip',0,19,NULL); /*!40000 ALTER TABLE `tl_larsrc11_resource_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_larsrc11_session` -- DROP TABLE IF EXISTS `tl_larsrc11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_larsrc11_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `resource_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), KEY `FK24AA78C530E79035` (`resource_uid`), CONSTRAINT `FK24AA78C530E79035` FOREIGN KEY (`resource_uid`) REFERENCES `tl_larsrc11_resource` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_larsrc11_session` -- LOCK TABLES `tl_larsrc11_session` WRITE; /*!40000 ALTER TABLE `tl_larsrc11_session` DISABLE KEYS */; INSERT INTO `tl_larsrc11_session` VALUES (1,NULL,NULL,0,11,12,'Everybody learners'),(2,NULL,NULL,0,12,19,'Everybody learners'),(3,NULL,NULL,0,14,34,'Everybody learners'),(4,NULL,NULL,0,17,36,'Everybody learners'),(5,NULL,NULL,0,13,37,'Everybody learners'),(6,NULL,NULL,0,16,38,'Everybody learners'),(7,NULL,NULL,0,15,40,'Everybody learners'),(8,NULL,NULL,0,18,44,'Everybody learners'),(9,NULL,NULL,0,19,46,'Everybody learners'); /*!40000 ALTER TABLE `tl_larsrc11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_larsrc11_user` -- DROP TABLE IF EXISTS `tl_larsrc11_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_larsrc11_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `session_finished` smallint(6) default NULL, `session_uid` bigint(20) default NULL, `resource_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK30113BFCEC0D3147` (`session_uid`), KEY `FK30113BFC309ED320` (`resource_uid`), CONSTRAINT `FK30113BFC309ED320` FOREIGN KEY (`resource_uid`) REFERENCES `tl_larsrc11_resource` (`uid`), CONSTRAINT `FK30113BFCEC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_larsrc11_session` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_larsrc11_user` -- LOCK TABLES `tl_larsrc11_user` WRITE; /*!40000 ALTER TABLE `tl_larsrc11_user` DISABLE KEYS */; INSERT INTO `tl_larsrc11_user` VALUES (1,5,'Test','One','test1',0,NULL,2),(2,5,'Test','One','test1',0,NULL,3),(3,5,'Test','One','test1',0,NULL,4),(4,5,'Test','One','test1',0,NULL,5),(5,5,'Test','One','test1',0,NULL,6),(6,5,'Test','One','test1',0,NULL,7),(7,5,'Test','One','test1',0,NULL,8),(8,5,'Test','One','test1',0,NULL,9),(9,5,'Test','One','test1',0,NULL,10),(10,5,'Test','One','test1',0,NULL,11),(11,5,'Test','One','test1',0,NULL,12),(12,5,'Test','One','test1',0,NULL,13),(13,5,'Test','One','test1',0,NULL,14),(14,5,'Test','One','test1',0,NULL,15),(15,5,'Test','One','test1',0,NULL,16),(16,5,'Test','One','test1',0,NULL,17),(17,5,'Test','One','test1',0,NULL,18),(18,5,'Test','One','test1',0,NULL,19); /*!40000 ALTER TABLE `tl_larsrc11_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasbmt11_content` -- DROP TABLE IF EXISTS `tl_lasbmt11_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasbmt11_content` ( `content_id` bigint(20) NOT NULL, `title` varchar(64) NOT NULL, `instruction` text, `define_later` smallint(6) NOT NULL, `run_offline` smallint(6) NOT NULL, `offline_instruction` text, `online_instruction` text, `content_in_use` smallint(6) default NULL, `lock_on_finished` smallint(6) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` smallint(6) default NULL, `limit_upload` smallint(6) default NULL, `limit_upload_number` int(11) default NULL, `created` datetime default NULL, `created_by` bigint(20) default NULL, `updated` datetime default NULL, `mark_release_notify` tinyint(4) default '0', `file_submit_notify` tinyint(4) default '0', PRIMARY KEY (`content_id`), KEY `FKAEF329AC172BC670` (`created_by`), CONSTRAINT `FKAEF329AC172BC670` FOREIGN KEY (`created_by`) REFERENCES `tl_lasbmt11_user` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasbmt11_content` -- LOCK TABLES `tl_lasbmt11_content` WRITE; /*!40000 ALTER TABLE `tl_lasbmt11_content` DISABLE KEYS */; INSERT INTO `tl_lasbmt11_content` VALUES (4,'Submit Files','Instructions',0,0,NULL,NULL,0,0,NULL,0,0,1,NULL,NULL,NULL,0,0),(47,'Essay Submission','

This is the Learner Interface for Submit Files.

\n
Again, LAMS provides a space for Authors to write Instructions for Learners:
\n
 
\n
\n
 
\n
Use this activity to submit your essay for Marking.
\n
 
\n
Please remember that your attachments should be Word Documents (.doc), Adobe Documents (.pdf), or Text Files (.txt) so that I can read them on my computer.
\n
\n
\n
 
\n
You have the option of uploading a file here if you would like - have a play with the activity and see what you can do.
\n
 
\n
\n
 
',0,0,'','',0,0,'',0,0,0,'2009-05-21 17:38:09',1,'2009-05-21 17:38:09',0,0),(93,'Essay Submission','

This is the Learner Interface for Submit Files.

\n
Again, LAMS provides a space for Authors to write Instructions for Learners:
\n
 
\n
\n
 
\n
Use this activity to submit your essay for Marking.
\n
 
\n
Please remember that your attachments should be Word Documents (.doc), Adobe Documents (.pdf), or Text Files (.txt) so that I can read them on my computer.
\n
\n
\n
 
\n
You have the option of uploading a file here if you would like - have a play with the activity and see what you can do.
\n
 
\n
\n
 
',0,0,'','',0,0,'',0,0,0,'2009-05-21 17:38:09',1,'2009-05-21 17:38:09',0,0); /*!40000 ALTER TABLE `tl_lasbmt11_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasbmt11_instruction_files` -- DROP TABLE IF EXISTS `tl_lasbmt11_instruction_files`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasbmt11_instruction_files` ( `uid` bigint(20) NOT NULL auto_increment, `uuid` bigint(20) default NULL, `version_id` bigint(20) default NULL, `type` varchar(20) default NULL, `name` varchar(255) default NULL, `content_id` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKA75538F9785A173A` (`content_id`), CONSTRAINT `FKA75538F9785A173A` FOREIGN KEY (`content_id`) REFERENCES `tl_lasbmt11_content` (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasbmt11_instruction_files` -- LOCK TABLES `tl_lasbmt11_instruction_files` WRITE; /*!40000 ALTER TABLE `tl_lasbmt11_instruction_files` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasbmt11_instruction_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasbmt11_report` -- DROP TABLE IF EXISTS `tl_lasbmt11_report`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasbmt11_report` ( `report_id` bigint(20) NOT NULL auto_increment, `comments` varchar(250) default NULL, `marks` float default NULL, `date_marks_released` datetime default NULL, PRIMARY KEY (`report_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasbmt11_report` -- LOCK TABLES `tl_lasbmt11_report` WRITE; /*!40000 ALTER TABLE `tl_lasbmt11_report` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasbmt11_report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasbmt11_session` -- DROP TABLE IF EXISTS `tl_lasbmt11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasbmt11_session` ( `session_id` bigint(20) NOT NULL, `status` int(11) NOT NULL, `content_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`session_id`), KEY `FKEC8C77C9785A173A` (`content_id`), CONSTRAINT `FKEC8C77C9785A173A` FOREIGN KEY (`content_id`) REFERENCES `tl_lasbmt11_content` (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasbmt11_session` -- LOCK TABLES `tl_lasbmt11_session` WRITE; /*!40000 ALTER TABLE `tl_lasbmt11_session` DISABLE KEYS */; INSERT INTO `tl_lasbmt11_session` VALUES (25,0,93,'Everybody learners'); /*!40000 ALTER TABLE `tl_lasbmt11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasbmt11_submission_details` -- DROP TABLE IF EXISTS `tl_lasbmt11_submission_details`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasbmt11_submission_details` ( `submission_id` bigint(20) NOT NULL auto_increment, `filePath` varchar(250) default NULL, `fileDescription` varchar(250) default NULL, `date_of_submission` datetime default NULL, `uuid` bigint(20) default NULL, `version_id` bigint(20) default NULL, `session_id` bigint(20) default NULL, `learner_id` bigint(20) default NULL, PRIMARY KEY (`submission_id`), KEY `FK1411A53CFFD5A38B` (`learner_id`), KEY `FK1411A53C93C861A` (`session_id`), CONSTRAINT `FK1411A53C93C861A` FOREIGN KEY (`session_id`) REFERENCES `tl_lasbmt11_session` (`session_id`), CONSTRAINT `FK1411A53CFFD5A38B` FOREIGN KEY (`learner_id`) REFERENCES `tl_lasbmt11_user` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasbmt11_submission_details` -- LOCK TABLES `tl_lasbmt11_submission_details` WRITE; /*!40000 ALTER TABLE `tl_lasbmt11_submission_details` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasbmt11_submission_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasbmt11_user` -- DROP TABLE IF EXISTS `tl_lasbmt11_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasbmt11_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` int(11) default NULL, `finished` bit(1) default NULL, `session_id` bigint(20) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `last_name` varchar(255) default NULL, `content_id` bigint(20) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasbmt11_user` -- LOCK TABLES `tl_lasbmt11_user` WRITE; /*!40000 ALTER TABLE `tl_lasbmt11_user` DISABLE KEYS */; INSERT INTO `tl_lasbmt11_user` VALUES (1,5,0x00,NULL,'One','test1','Test',47); /*!40000 ALTER TABLE `tl_lasbmt11_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lascrb11_attachment` -- DROP TABLE IF EXISTS `tl_lascrb11_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lascrb11_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `scribe_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK57953706B3FA1495` (`scribe_uid`), CONSTRAINT `FK57953706B3FA1495` FOREIGN KEY (`scribe_uid`) REFERENCES `tl_lascrb11_scribe` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lascrb11_attachment` -- LOCK TABLES `tl_lascrb11_attachment` WRITE; /*!40000 ALTER TABLE `tl_lascrb11_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lascrb11_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lascrb11_heading` -- DROP TABLE IF EXISTS `tl_lascrb11_heading`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lascrb11_heading` ( `uid` bigint(20) NOT NULL auto_increment, `heading` text, `scribe_uid` bigint(20) default NULL, `display_order` int(11) default NULL, PRIMARY KEY (`uid`), KEY `FK428A22FFB3FA1495` (`scribe_uid`), CONSTRAINT `FK428A22FFB3FA1495` FOREIGN KEY (`scribe_uid`) REFERENCES `tl_lascrb11_scribe` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lascrb11_heading` -- LOCK TABLES `tl_lascrb11_heading` WRITE; /*!40000 ALTER TABLE `tl_lascrb11_heading` DISABLE KEYS */; INSERT INTO `tl_lascrb11_heading` VALUES (1,'Scribe Heading',1,0); /*!40000 ALTER TABLE `tl_lascrb11_heading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lascrb11_report_entry` -- DROP TABLE IF EXISTS `tl_lascrb11_report_entry`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lascrb11_report_entry` ( `uid` bigint(20) NOT NULL auto_increment, `entry_text` text, `scribe_heading_uid` bigint(20) default NULL, `scribe_session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK5439FACAEA50D086` (`scribe_heading_uid`), KEY `FK5439FACA1C266FAE` (`scribe_session_uid`), CONSTRAINT `FK5439FACA1C266FAE` FOREIGN KEY (`scribe_session_uid`) REFERENCES `tl_lascrb11_session` (`uid`), CONSTRAINT `FK5439FACAEA50D086` FOREIGN KEY (`scribe_heading_uid`) REFERENCES `tl_lascrb11_heading` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lascrb11_report_entry` -- LOCK TABLES `tl_lascrb11_report_entry` WRITE; /*!40000 ALTER TABLE `tl_lascrb11_report_entry` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lascrb11_report_entry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lascrb11_scribe` -- DROP TABLE IF EXISTS `tl_lascrb11_scribe`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lascrb11_scribe` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `auto_select_scribe` bit(1) default NULL, `reflect_on_activity` bit(1) default NULL, `reflect_instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `aggregated_reports` bit(1) default '\0', PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lascrb11_scribe` -- LOCK TABLES `tl_lascrb11_scribe` WRITE; /*!40000 ALTER TABLE `tl_lascrb11_scribe` DISABLE KEYS */; INSERT INTO `tl_lascrb11_scribe` VALUES (1,NULL,NULL,NULL,'Scribe','Instructions',0x00,0x01,0x01,0x00,NULL,'','',0x00,0x00,10,0x00); /*!40000 ALTER TABLE `tl_lascrb11_scribe` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lascrb11_session` -- DROP TABLE IF EXISTS `tl_lascrb11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lascrb11_session` ( `uid` bigint(20) NOT NULL auto_increment, `version` int(11) NOT NULL, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `scribe_uid` bigint(20) default NULL, `appointed_scribe_uid` bigint(20) default NULL, `force_complete` bit(1) default NULL, `report_submitted` bit(1) default NULL, PRIMARY KEY (`uid`), KEY `FK89732793B3FA1495` (`scribe_uid`), KEY `FK89732793E46919FF` (`appointed_scribe_uid`), CONSTRAINT `FK89732793E46919FF` FOREIGN KEY (`appointed_scribe_uid`) REFERENCES `tl_lascrb11_user` (`uid`), CONSTRAINT `FK89732793B3FA1495` FOREIGN KEY (`scribe_uid`) REFERENCES `tl_lascrb11_scribe` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lascrb11_session` -- LOCK TABLES `tl_lascrb11_session` WRITE; /*!40000 ALTER TABLE `tl_lascrb11_session` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lascrb11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lascrb11_user` -- DROP TABLE IF EXISTS `tl_lascrb11_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lascrb11_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `scribe_session_uid` bigint(20) default NULL, `report_approved` bit(1) default NULL, `started_activity` bit(1) default NULL, PRIMARY KEY (`uid`), KEY `FK187DAFEE1C266FAE` (`scribe_session_uid`), CONSTRAINT `FK187DAFEE1C266FAE` FOREIGN KEY (`scribe_session_uid`) REFERENCES `tl_lascrb11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lascrb11_user` -- LOCK TABLES `tl_lascrb11_user` WRITE; /*!40000 ALTER TABLE `tl_lascrb11_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lascrb11_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasprd10_attachment` -- DROP TABLE IF EXISTS `tl_lasprd10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasprd10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `spreadsheet_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_2065267438_1E7009430E79035` (`spreadsheet_uid`), CONSTRAINT `FK_NEW_2065267438_1E7009430E79035` FOREIGN KEY (`spreadsheet_uid`) REFERENCES `tl_lasprd10_spreadsheet` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasprd10_attachment` -- LOCK TABLES `tl_lasprd10_attachment` WRITE; /*!40000 ALTER TABLE `tl_lasprd10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasprd10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasprd10_session` -- DROP TABLE IF EXISTS `tl_lasprd10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasprd10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `spreadsheet_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_2065267438_24AA78C530E79035` (`spreadsheet_uid`), CONSTRAINT `FK_NEW_2065267438_24AA78C530E79035` FOREIGN KEY (`spreadsheet_uid`) REFERENCES `tl_lasprd10_spreadsheet` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasprd10_session` -- LOCK TABLES `tl_lasprd10_session` WRITE; /*!40000 ALTER TABLE `tl_lasprd10_session` DISABLE KEYS */; INSERT INTO `tl_lasprd10_session` VALUES (1,NULL,NULL,0,3,11,'Everybody learners'); /*!40000 ALTER TABLE `tl_lasprd10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasprd10_spreadsheet` -- DROP TABLE IF EXISTS `tl_lasprd10_spreadsheet`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasprd10_spreadsheet` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `run_offline` tinyint(4) default NULL, `is_learner_allowed_to_save` tinyint(4) default NULL, `is_marking_enabled` tinyint(4) default NULL, `lock_on_finished` tinyint(4) default NULL, `instructions` text, `code` text, `online_instructions` text, `offline_instructions` text, `content_in_use` tinyint(4) default NULL, `define_later` tinyint(4) default NULL, `content_id` bigint(20) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` smallint(6) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `FK_NEW_2065267438_89093BF758092FB` (`create_by`), CONSTRAINT `FK_NEW_2065267438_89093BF758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_lasprd10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasprd10_spreadsheet` -- LOCK TABLES `tl_lasprd10_spreadsheet` WRITE; /*!40000 ALTER TABLE `tl_lasprd10_spreadsheet` DISABLE KEYS */; INSERT INTO `tl_lasprd10_spreadsheet` VALUES (1,NULL,NULL,NULL,'Spreadsheet',0,1,0,0,'Instructions ','',NULL,NULL,0,0,13,NULL,0),(2,NULL,'2008-11-14 14:29:02',1,'Spreadsheet Demonstration',0,1,0,0,'
\n

\"\"Spreadsheet

\n

New to LAMS 2.2!

\n
\n

The Spreadsheet Activity allows a sequence author to provide data in a spreadsheet format to Learners.
\nLearners can then perform their own calculations on and manipulations of the data.

\n

By default, the Spreadsheet tool allows each learner to save their own individual copy of the spreadsheet. The activity can be configured to allow Monitors to mark each Learners spreadsheet.

\n
Spreadsheet Functions
\n

The Spreadsheet can be viewed in one of several modes. These are changed by clicking the labels in the top-right corner of the applet.

\n\n
 
\n
Values displays the actual values of the calculations and data in each cell.
\n
Formulas shows the cacluations behind the cell.
\n

Explore the Demonstration Spreadsheet below.

\n

 

\n
\n
','dbCells = [\n [0,0,\"SALES 3rd Quarter\",\"\"], // A1\n\n [1,1,\"John\",\"\"], // B2\n [2,1,\"Paul\",\"\"], // C2\n [3,1,\"Michael\",\"\"], // D2\n [5,1,\"MONTHLY Totals\",\"\"], // F2\n [6,1,\"MONTHLY Average\",\"\"], // G2\n\n [0,2,\"JULY\",\"\"], // A3\n [1,2,\"210\",\"\"], // B3\n [2,2,\"195\",\"\"], // C3\n [3,2,\"203\",\"\"], // D3\n [5,2,\"=sum(B3:D3)\",\"\"], // F3\n [6,2,\"=avg(B3:D3)\",\"\"], // G3\n\n [0,3,\"AUGUST\",\"\"], // A4\n [1,3,\"312\",\"\"], // B4\n [2,3,\"263\",\"\"], // C4\n [3,3,\"278\",\"\"], // D4\n [5,3,\"=sum(B4:D4)\",\"\"], // F4\n [6,3,\"=avg(B4:D4)\",\"\"], // G4\n\n [0,4,\"SEPTEMBER\",\"\"], // A5\n [1,4,\"280\",\"\"], // B5\n [2,4,\"243\",\"\"], // C5\n [3,4,\"216\",\"\"], // D5\n [5,4,\"=sum(B5:D5)\",\"\"], // F5\n [6,4,\"=avg(B5:D5)\",\"\"], // G5\n\n [0,6,\"Seller Totals\",\"\"], // A7\n [1,6,\"=sum(B3:B5)\",\"\"], // B7\n [2,6,\"=sum(C3:C5)\",\"\"], // C7\n [3,6,\"=sum(D3:D5)\",\"\"], // D7\n [4,6,\"GRAND Total\",\"\"], // E7\n [5,6,\"=sum(B3:D5)\",\"\"], // F7\n];\n','','',0,0,37,'',0),(3,NULL,'2008-11-14 14:29:02',2,'Spreadsheet Demonstration',0,1,0,0,'
\n

\"\"Spreadsheet

\n

New to LAMS 2.2!

\n
\n

The Spreadsheet Activity allows a sequence author to provide data in a spreadsheet format to Learners.
\nLearners can then perform their own calculations on and manipulations of the data.

\n

By default, the Spreadsheet tool allows each learner to save their own individual copy of the spreadsheet. The activity can be configured to allow Monitors to mark each Learners spreadsheet.

\n
Spreadsheet Functions
\n

The Spreadsheet can be viewed in one of several modes. These are changed by clicking the labels in the top-right corner of the applet.

\n\n
 
\n
Values displays the actual values of the calculations and data in each cell.
\n
Formulas shows the cacluations behind the cell.
\n

Explore the Demonstration Spreadsheet below.

\n

 

\n
\n
','dbCells = [\n [0,0,\"SALES 3rd Quarter\",\"\"], // A1\n\n [1,1,\"John\",\"\"], // B2\n [2,1,\"Paul\",\"\"], // C2\n [3,1,\"Michael\",\"\"], // D2\n [5,1,\"MONTHLY Totals\",\"\"], // F2\n [6,1,\"MONTHLY Average\",\"\"], // G2\n\n [0,2,\"JULY\",\"\"], // A3\n [1,2,\"210\",\"\"], // B3\n [2,2,\"195\",\"\"], // C3\n [3,2,\"203\",\"\"], // D3\n [5,2,\"=sum(B3:D3)\",\"\"], // F3\n [6,2,\"=avg(B3:D3)\",\"\"], // G3\n\n [0,3,\"AUGUST\",\"\"], // A4\n [1,3,\"312\",\"\"], // B4\n [2,3,\"263\",\"\"], // C4\n [3,3,\"278\",\"\"], // D4\n [5,3,\"=sum(B4:D4)\",\"\"], // F4\n [6,3,\"=avg(B4:D4)\",\"\"], // G4\n\n [0,4,\"SEPTEMBER\",\"\"], // A5\n [1,4,\"280\",\"\"], // B5\n [2,4,\"243\",\"\"], // C5\n [3,4,\"216\",\"\"], // D5\n [5,4,\"=sum(B5:D5)\",\"\"], // F5\n [6,4,\"=avg(B5:D5)\",\"\"], // G5\n\n [0,6,\"Seller Totals\",\"\"], // A7\n [1,6,\"=sum(B3:B5)\",\"\"], // B7\n [2,6,\"=sum(C3:C5)\",\"\"], // C7\n [3,6,\"=sum(D3:D5)\",\"\"], // D7\n [4,6,\"GRAND Total\",\"\"], // E7\n [5,6,\"=sum(B3:D5)\",\"\"], // F7\n];\n','','',0,0,79,'',0); /*!40000 ALTER TABLE `tl_lasprd10_spreadsheet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasprd10_spreadsheet_mark` -- DROP TABLE IF EXISTS `tl_lasprd10_spreadsheet_mark`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasprd10_spreadsheet_mark` ( `uid` bigint(20) NOT NULL auto_increment, `marks` varchar(255) default NULL, `comments` text, `date_marks_released` datetime default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasprd10_spreadsheet_mark` -- LOCK TABLES `tl_lasprd10_spreadsheet_mark` WRITE; /*!40000 ALTER TABLE `tl_lasprd10_spreadsheet_mark` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasprd10_spreadsheet_mark` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasprd10_user` -- DROP TABLE IF EXISTS `tl_lasprd10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasprd10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `session_finished` smallint(6) default NULL, `session_uid` bigint(20) default NULL, `spreadsheet_uid` bigint(20) default NULL, `user_modified_spreadsheet_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_2065267438_30113BFCEC0D3147` (`session_uid`), KEY `FK_NEW_2065267438_30113BFC309ED320` (`spreadsheet_uid`), KEY `FK_NEW_2065267438_693580A441F9365D` (`user_modified_spreadsheet_uid`), CONSTRAINT `FK_NEW_2065267438_693580A441F9365D` FOREIGN KEY (`user_modified_spreadsheet_uid`) REFERENCES `tl_lasprd10_user_modified_spreadsheet` (`uid`), CONSTRAINT `FK_NEW_2065267438_30113BFC309ED320` FOREIGN KEY (`spreadsheet_uid`) REFERENCES `tl_lasprd10_spreadsheet` (`uid`), CONSTRAINT `FK_NEW_2065267438_30113BFCEC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_lasprd10_session` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasprd10_user` -- LOCK TABLES `tl_lasprd10_user` WRITE; /*!40000 ALTER TABLE `tl_lasprd10_user` DISABLE KEYS */; INSERT INTO `tl_lasprd10_user` VALUES (1,5,'Test','One','test1',0,NULL,2,NULL),(2,5,'Test','One','test1',0,NULL,3,NULL); /*!40000 ALTER TABLE `tl_lasprd10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasprd10_user_modified_spreadsheet` -- DROP TABLE IF EXISTS `tl_lasprd10_user_modified_spreadsheet`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasprd10_user_modified_spreadsheet` ( `uid` bigint(20) NOT NULL auto_increment, `user_modified_spreadsheet` text, `mark_id` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_tl_lasprd10_user_modified_spreadsheet_1` (`mark_id`), CONSTRAINT `FK_tl_lasprd10_user_modified_spreadsheet_1` FOREIGN KEY (`mark_id`) REFERENCES `tl_lasprd10_spreadsheet_mark` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasprd10_user_modified_spreadsheet` -- LOCK TABLES `tl_lasprd10_user_modified_spreadsheet` WRITE; /*!40000 ALTER TABLE `tl_lasprd10_user_modified_spreadsheet` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasprd10_user_modified_spreadsheet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_answer` -- DROP TABLE IF EXISTS `tl_lasurv11_answer`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_answer` ( `uid` bigint(20) NOT NULL auto_increment, `question_uid` bigint(20) default NULL, `user_uid` bigint(20) default NULL, `answer_choices` varchar(255) default NULL, `udpate_date` datetime default NULL, `answer_text` text, PRIMARY KEY (`uid`), KEY `FK6DAAFE3BB1423DC1` (`user_uid`), KEY `FK6DAAFE3B25F3BB77` (`question_uid`), CONSTRAINT `FK6DAAFE3B25F3BB77` FOREIGN KEY (`question_uid`) REFERENCES `tl_lasurv11_question` (`uid`), CONSTRAINT `FK6DAAFE3BB1423DC1` FOREIGN KEY (`user_uid`) REFERENCES `tl_lasurv11_user` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_answer` -- LOCK TABLES `tl_lasurv11_answer` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_answer` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasurv11_answer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_attachment` -- DROP TABLE IF EXISTS `tl_lasurv11_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `survey_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKD92A9120D14146E5` (`survey_uid`), CONSTRAINT `FKD92A9120D14146E5` FOREIGN KEY (`survey_uid`) REFERENCES `tl_lasurv11_survey` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_attachment` -- LOCK TABLES `tl_lasurv11_attachment` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasurv11_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_condition_questions` -- DROP TABLE IF EXISTS `tl_lasurv11_condition_questions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_condition_questions` ( `condition_id` bigint(20) NOT NULL default '0', `question_uid` bigint(20) NOT NULL default '0', PRIMARY KEY (`condition_id`,`question_uid`), KEY `SurveyConditionQuestionToSurveyQuestion` (`question_uid`), CONSTRAINT `SurveyConditionQuestionToSurveyCondition` FOREIGN KEY (`condition_id`) REFERENCES `tl_lasurv11_conditions` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `SurveyConditionQuestionToSurveyQuestion` FOREIGN KEY (`question_uid`) REFERENCES `tl_lasurv11_question` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_condition_questions` -- LOCK TABLES `tl_lasurv11_condition_questions` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_condition_questions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasurv11_condition_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_conditions` -- DROP TABLE IF EXISTS `tl_lasurv11_conditions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_conditions` ( `condition_id` bigint(20) NOT NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`condition_id`), KEY `SurveyConditionToSurvey` (`content_uid`), CONSTRAINT `SurveyConditionInheritance` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `SurveyConditionToSurvey` FOREIGN KEY (`content_uid`) REFERENCES `tl_lasurv11_survey` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_conditions` -- LOCK TABLES `tl_lasurv11_conditions` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_conditions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lasurv11_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_option` -- DROP TABLE IF EXISTS `tl_lasurv11_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_option` ( `uid` bigint(20) NOT NULL auto_increment, `description` text, `sequence_id` int(11) default NULL, `question_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK85AB46F26966134F` (`question_uid`), CONSTRAINT `FK85AB46F26966134F` FOREIGN KEY (`question_uid`) REFERENCES `tl_lasurv11_question` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_option` -- LOCK TABLES `tl_lasurv11_option` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_option` DISABLE KEYS */; INSERT INTO `tl_lasurv11_option` VALUES (1,'Option 1',0,1),(2,'Option 2',1,1),(3,'Option 3',2,1),(4,'Option 1',0,2),(5,'Option 2',1,2),(6,'Option 3',2,2),(7,'Lamb!',1,5),(8,'Puppy',2,5),(9,'Pony',0,5),(10,'Banana',1,6),(11,'Oranges',2,6),(12,'Apple',0,6),(13,'Oranges',2,7),(14,'Banana',1,7),(15,'Apple',0,7),(16,'Pony',0,8),(17,'Puppy',2,8),(18,'Lamb!',1,8); /*!40000 ALTER TABLE `tl_lasurv11_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_question` -- DROP TABLE IF EXISTS `tl_lasurv11_question`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_question` ( `uid` bigint(20) NOT NULL auto_increment, `sequence_id` int(11) default NULL, `description` text, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, `question_type` smallint(6) default NULL, `append_text` smallint(6) default NULL, `optional` smallint(6) default NULL, `allow_multiple_answer` smallint(6) default NULL, `survey_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK872D4F23D14146E5` (`survey_uid`), KEY `FK872D4F23E4C99A5F` (`create_by`), CONSTRAINT `FK872D4F23E4C99A5F` FOREIGN KEY (`create_by`) REFERENCES `tl_lasurv11_user` (`uid`), CONSTRAINT `FK872D4F23D14146E5` FOREIGN KEY (`survey_uid`) REFERENCES `tl_lasurv11_survey` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_question` -- LOCK TABLES `tl_lasurv11_question` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_question` DISABLE KEYS */; INSERT INTO `tl_lasurv11_question` VALUES (1,1,'Sample Multiple choice - only one response allowed?',NULL,'2009-05-21 17:33:34',1,0,0,0,1),(2,2,'Sample Multiple choice - multiple response allowed?',NULL,'2009-05-21 17:33:34',2,0,0,1,1),(3,3,'Sample Free text question?',NULL,'2009-05-21 17:33:34',3,0,0,0,1),(4,3,'
What\'s the best thing about LAMS?
\n
\n

\n
',1,'2008-03-12 16:40:31',3,0,0,0,2),(5,1,'
What\'s your favourite baby animal?
\n
',1,'2008-03-12 16:40:31',1,0,0,0,2),(6,2,'
Which fruits do you like?
\n
\n

\n
',1,'2008-03-12 16:40:31',2,0,0,1,2),(7,2,'
Which fruits do you like?
\n
\n

\n
',2,'2008-03-12 16:40:31',2,0,0,1,3),(8,1,'
What\'s your favourite baby animal?
\n
',2,'2008-03-12 16:40:31',1,0,0,0,3),(9,3,'
What\'s the best thing about LAMS?
\n
\n

\n
',2,'2008-03-12 16:40:31',3,0,0,0,3); /*!40000 ALTER TABLE `tl_lasurv11_question` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_session` -- DROP TABLE IF EXISTS `tl_lasurv11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `survey_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), KEY `FKF08793B9D14146E5` (`survey_uid`), CONSTRAINT `FKF08793B9D14146E5` FOREIGN KEY (`survey_uid`) REFERENCES `tl_lasurv11_survey` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_session` -- LOCK TABLES `tl_lasurv11_session` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_session` DISABLE KEYS */; INSERT INTO `tl_lasurv11_session` VALUES (1,NULL,NULL,3,24,'Everybody learners'); /*!40000 ALTER TABLE `tl_lasurv11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_survey` -- DROP TABLE IF EXISTS `tl_lasurv11_survey`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_survey` ( `uid` bigint(20) NOT NULL auto_increment, `title` varchar(255) default NULL, `run_offline` smallint(6) default NULL, `lock_on_finished` smallint(6) default NULL, `instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` smallint(6) default NULL, `define_later` smallint(6) default NULL, `content_id` bigint(20) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` smallint(6) default NULL, `show_questions_on_one_page` smallint(6) default NULL, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `answer_submit_notify` tinyint(4) default '0', PRIMARY KEY (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `FK8CC465D7E4C99A5F` (`create_by`), CONSTRAINT `FK8CC465D7E4C99A5F` FOREIGN KEY (`create_by`) REFERENCES `tl_lasurv11_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_survey` -- LOCK TABLES `tl_lasurv11_survey` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_survey` DISABLE KEYS */; INSERT INTO `tl_lasurv11_survey` VALUES (1,'Survey',0,1,'Instructions',NULL,NULL,0,0,9,NULL,0,1,NULL,NULL,NULL,0),(2,'Survey Demonstration',0,1,'
\"\"
\n
 
\n
 
\n

This is the Survey activity. 

\n

 

\n

Like all activities, this is the space for Learner Instructions.

\n
 
\n
 
\n
 
\n
 
\n

Below, you’ll see several different types of Survey questions: 

\n\n
 
','','',0,0,46,'',0,1,NULL,'2008-04-18 15:51:31',1,0),(3,'Survey Demonstration',0,1,'
\"\"
\n
 
\n
 
\n

This is the Survey activity. 

\n

 

\n

Like all activities, this is the space for Learner Instructions.

\n
 
\n
 
\n
 
\n
 
\n

Below, you’ll see several different types of Survey questions: 

\n\n
 
','','',0,0,95,'',0,1,NULL,'2008-04-18 15:51:31',2,0); /*!40000 ALTER TABLE `tl_lasurv11_survey` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lasurv11_user` -- DROP TABLE IF EXISTS `tl_lasurv11_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lasurv11_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `session_uid` bigint(20) default NULL, `survey_uid` bigint(20) default NULL, `session_finished` smallint(6) default NULL, PRIMARY KEY (`uid`), KEY `FK633F25884F803F63` (`session_uid`), KEY `FK633F2588D14146E5` (`survey_uid`), CONSTRAINT `FK633F2588D14146E5` FOREIGN KEY (`survey_uid`) REFERENCES `tl_lasurv11_survey` (`uid`), CONSTRAINT `FK633F25884F803F63` FOREIGN KEY (`session_uid`) REFERENCES `tl_lasurv11_session` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lasurv11_user` -- LOCK TABLES `tl_lasurv11_user` WRITE; /*!40000 ALTER TABLE `tl_lasurv11_user` DISABLE KEYS */; INSERT INTO `tl_lasurv11_user` VALUES (1,5,'Test','One','test1',NULL,2,0),(2,5,'Test','One','test1',NULL,3,0); /*!40000 ALTER TABLE `tl_lasurv11_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_attachment` -- DROP TABLE IF EXISTS `tl_latask10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `taskList_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_174079138_1E7009430E79035` (`taskList_uid`), CONSTRAINT `FK_NEW_174079138_1E7009430E79035` FOREIGN KEY (`taskList_uid`) REFERENCES `tl_latask10_taskList` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_attachment` -- LOCK TABLES `tl_latask10_attachment` WRITE; /*!40000 ALTER TABLE `tl_latask10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_condition` -- DROP TABLE IF EXISTS `tl_latask10_condition`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_condition` ( `condition_uid` bigint(20) NOT NULL auto_increment, `sequence_id` int(11) default NULL, `taskList_uid` bigint(20) default NULL, `name` varchar(255) default NULL, PRIMARY KEY (`condition_uid`), KEY `FK_tl_latask10_condition_1` (`taskList_uid`), CONSTRAINT `FK_tl_latask10_condition_1` FOREIGN KEY (`taskList_uid`) REFERENCES `tl_latask10_taskList` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_condition` -- LOCK TABLES `tl_latask10_condition` WRITE; /*!40000 ALTER TABLE `tl_latask10_condition` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_condition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_condition_tl_item` -- DROP TABLE IF EXISTS `tl_latask10_condition_tl_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_condition_tl_item` ( `uid` bigint(20) NOT NULL, `condition_uid` bigint(20) NOT NULL, PRIMARY KEY (`uid`,`condition_uid`), KEY `FK_tl_latask10_taskList_item_condition_1` (`condition_uid`), KEY `FK_tl_latask10_taskList_item_condition_2` (`uid`), CONSTRAINT `FK_tl_latask10_taskList_item_condition_2` FOREIGN KEY (`uid`) REFERENCES `tl_latask10_taskList_item` (`uid`), CONSTRAINT `FK_tl_latask10_taskList_item_condition_1` FOREIGN KEY (`condition_uid`) REFERENCES `tl_latask10_condition` (`condition_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_condition_tl_item` -- LOCK TABLES `tl_latask10_condition_tl_item` WRITE; /*!40000 ALTER TABLE `tl_latask10_condition_tl_item` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_condition_tl_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_item_attachment` -- DROP TABLE IF EXISTS `tl_latask10_item_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_item_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `taskList_item_uid` bigint(20) default NULL, `create_by` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_tl_latask10_item_attachment_1` (`taskList_item_uid`), KEY `FK_tl_latask10_item_attachment_2` (`create_by`), CONSTRAINT `FK_tl_latask10_item_attachment_2` FOREIGN KEY (`create_by`) REFERENCES `tl_latask10_user` (`uid`), CONSTRAINT `FK_tl_latask10_item_attachment_1` FOREIGN KEY (`taskList_item_uid`) REFERENCES `tl_latask10_taskList_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_item_attachment` -- LOCK TABLES `tl_latask10_item_attachment` WRITE; /*!40000 ALTER TABLE `tl_latask10_item_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_item_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_item_comment` -- DROP TABLE IF EXISTS `tl_latask10_item_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_item_comment` ( `uid` bigint(20) NOT NULL auto_increment, `comment` text, `taskList_item_uid` bigint(20) default NULL, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, PRIMARY KEY (`uid`), KEY `FK_tl_latask10_item_comment_3` (`taskList_item_uid`), KEY `FK_tl_latask10_item_comment_2` (`create_by`), CONSTRAINT `FK_tl_latask10_item_comment_2` FOREIGN KEY (`create_by`) REFERENCES `tl_latask10_user` (`uid`), CONSTRAINT `FK_tl_latask10_item_comment_3` FOREIGN KEY (`taskList_item_uid`) REFERENCES `tl_latask10_taskList_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_item_comment` -- LOCK TABLES `tl_latask10_item_comment` WRITE; /*!40000 ALTER TABLE `tl_latask10_item_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_item_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_item_log` -- DROP TABLE IF EXISTS `tl_latask10_item_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_item_log` ( `uid` bigint(20) NOT NULL auto_increment, `access_date` datetime default NULL, `taskList_item_uid` bigint(20) default NULL, `user_uid` bigint(20) default NULL, `complete` tinyint(4) default NULL, `session_id` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_174079138_693580A438BF8DFE` (`taskList_item_uid`), KEY `FK_NEW_174079138_693580A441F9365D` (`user_uid`), CONSTRAINT `FK_NEW_174079138_693580A441F9365D` FOREIGN KEY (`user_uid`) REFERENCES `tl_latask10_user` (`uid`), CONSTRAINT `FK_NEW_174079138_693580A438BF8DFE` FOREIGN KEY (`taskList_item_uid`) REFERENCES `tl_latask10_taskList_item` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_item_log` -- LOCK TABLES `tl_latask10_item_log` WRITE; /*!40000 ALTER TABLE `tl_latask10_item_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_item_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_session` -- DROP TABLE IF EXISTS `tl_latask10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `taskList_uid` bigint(20) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_174079138_24AA78C530E79035` (`taskList_uid`), CONSTRAINT `FK_NEW_174079138_24AA78C530E79035` FOREIGN KEY (`taskList_uid`) REFERENCES `tl_latask10_taskList` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_session` -- LOCK TABLES `tl_latask10_session` WRITE; /*!40000 ALTER TABLE `tl_latask10_session` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_taskList` -- DROP TABLE IF EXISTS `tl_latask10_taskList`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_taskList` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `run_offline` tinyint(4) default NULL, `instructions` text, `online_instructions` text, `offline_instructions` text, `content_in_use` tinyint(4) default NULL, `define_later` tinyint(4) default NULL, `content_id` bigint(20) default NULL, `lock_when_finished` tinyint(4) default NULL, `is_sequential_order` tinyint(4) default NULL, `minimum_number_tasks` int(11) default NULL, `allow_contribute_tasks` tinyint(4) default NULL, `is_monitor_verification_required` tinyint(4) default NULL, `reflect_instructions` varchar(255) default NULL, `reflect_on_activity` smallint(6) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `content_id` (`content_id`), KEY `FK_NEW_174079138_89093BF758092FB` (`create_by`), CONSTRAINT `FK_NEW_174079138_89093BF758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_latask10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_taskList` -- LOCK TABLES `tl_latask10_taskList` WRITE; /*!40000 ALTER TABLE `tl_latask10_taskList` DISABLE KEYS */; INSERT INTO `tl_latask10_taskList` VALUES (1,NULL,NULL,NULL,'Task List',0,'Instructions ',NULL,NULL,0,0,11,0,0,0,0,0,NULL,0); /*!40000 ALTER TABLE `tl_latask10_taskList` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_taskList_item` -- DROP TABLE IF EXISTS `tl_latask10_taskList_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_taskList_item` ( `uid` bigint(20) NOT NULL auto_increment, `sequence_id` int(11) default NULL, `description` text, `init_item` varchar(255) default NULL, `organization_xml` text, `title` varchar(255) default NULL, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, `create_by_author` tinyint(4) default NULL, `is_required` tinyint(4) default NULL, `is_comments_allowed` tinyint(4) default NULL, `is_comments_required` tinyint(4) default NULL, `is_files_allowed` tinyint(4) default NULL, `is_files_required` tinyint(4) default NULL, `is_comments_files_allowed` tinyint(4) default NULL, `show_comments_to_all` tinyint(4) default NULL, `is_child_task` tinyint(4) default NULL, `parent_task_name` varchar(255) default NULL, `taskList_uid` bigint(20) default NULL, `session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_174079138_F52D1F93758092FB` (`create_by`), KEY `FK_NEW_174079138_F52D1F9330E79035` (`taskList_uid`), KEY `FK_NEW_174079138_F52D1F93EC0D3147` (`session_uid`), CONSTRAINT `FK_NEW_174079138_F52D1F93EC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_latask10_session` (`uid`), CONSTRAINT `FK_NEW_174079138_F52D1F9330E79035` FOREIGN KEY (`taskList_uid`) REFERENCES `tl_latask10_taskList` (`uid`), CONSTRAINT `FK_NEW_174079138_F52D1F93758092FB` FOREIGN KEY (`create_by`) REFERENCES `tl_latask10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_taskList_item` -- LOCK TABLES `tl_latask10_taskList_item` WRITE; /*!40000 ALTER TABLE `tl_latask10_taskList_item` DISABLE KEYS */; INSERT INTO `tl_latask10_taskList_item` VALUES (1,1,NULL,NULL,NULL,'Task number 1',NULL,'2009-05-21 17:33:47',1,0,0,0,0,0,0,1,0,NULL,1,NULL); /*!40000 ALTER TABLE `tl_latask10_taskList_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_latask10_user` -- DROP TABLE IF EXISTS `tl_latask10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_latask10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `session_finished` smallint(6) default NULL, `session_uid` bigint(20) default NULL, `taskList_uid` bigint(20) default NULL, `is_verified_by_monitor` tinyint(4) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_174079138_30113BFCEC0D3147` (`session_uid`), KEY `FK_NEW_174079138_30113BFC309ED320` (`taskList_uid`), CONSTRAINT `FK_NEW_174079138_30113BFC309ED320` FOREIGN KEY (`taskList_uid`) REFERENCES `tl_latask10_taskList` (`uid`), CONSTRAINT `FK_NEW_174079138_30113BFCEC0D3147` FOREIGN KEY (`session_uid`) REFERENCES `tl_latask10_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_latask10_user` -- LOCK TABLES `tl_latask10_user` WRITE; /*!40000 ALTER TABLE `tl_latask10_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_latask10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_attachment` -- DROP TABLE IF EXISTS `tl_lavidr10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `videoRecorder_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_75587508_12090F57FC940906` (`videoRecorder_uid`), CONSTRAINT `FK_NEW_75587508_12090F57FC940906` FOREIGN KEY (`videoRecorder_uid`) REFERENCES `tl_lavidr10_videoRecorder` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_attachment` -- LOCK TABLES `tl_lavidr10_attachment` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavidr10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_comment` -- DROP TABLE IF EXISTS `tl_lavidr10_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_comment` ( `uid` bigint(20) NOT NULL auto_increment, `comment` text, `videoRecorder_recording_uid` bigint(20) default NULL, `videoRecorder_session_uid` bigint(20) default NULL, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_comment` -- LOCK TABLES `tl_lavidr10_comment` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavidr10_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_conditions` -- DROP TABLE IF EXISTS `tl_lavidr10_conditions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_conditions` ( `condition_id` bigint(20) NOT NULL, `content_uid` bigint(20) default NULL, PRIMARY KEY (`condition_id`), KEY `VideoRecorderConditionToVideoRecorder` (`content_uid`), CONSTRAINT `VideoRecorderConditionInheritance` FOREIGN KEY (`condition_id`) REFERENCES `lams_branch_condition` (`condition_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `VideoRecorderConditionToVideoRecorder` FOREIGN KEY (`content_uid`) REFERENCES `tl_lavidr10_videoRecorder` (`uid`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_conditions` -- LOCK TABLES `tl_lavidr10_conditions` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_conditions` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavidr10_conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_rating` -- DROP TABLE IF EXISTS `tl_lavidr10_rating`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_rating` ( `uid` bigint(20) NOT NULL auto_increment, `rating` float default NULL, `videoRecorder_recording_uid` bigint(20) default NULL, `videoRecorder_session_uid` bigint(20) default NULL, `create_by` bigint(20) default NULL, `create_date` datetime default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_rating` -- LOCK TABLES `tl_lavidr10_rating` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavidr10_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_recording` -- DROP TABLE IF EXISTS `tl_lavidr10_recording`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_recording` ( `uid` bigint(20) NOT NULL auto_increment, `tool_content_id` bigint(20) default NULL, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `description` varchar(1027) default NULL, `rating` float default NULL, `filename` varchar(255) default NULL, `is_local` bit(1) default NULL, `is_just_sound` bit(1) default NULL, `videoRecorder_session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_recording` -- LOCK TABLES `tl_lavidr10_recording` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_recording` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavidr10_recording` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_session` -- DROP TABLE IF EXISTS `tl_lavidr10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `videoRecorder_uid` bigint(20) default NULL, `content_folder_id` varchar(32) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_75587508_B7C198E2FC940906` (`videoRecorder_uid`), CONSTRAINT `FK_NEW_75587508_B7C198E2FC940906` FOREIGN KEY (`videoRecorder_uid`) REFERENCES `tl_lavidr10_videoRecorder` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_session` -- LOCK TABLES `tl_lavidr10_session` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_session` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavidr10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_user` -- DROP TABLE IF EXISTS `tl_lavidr10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `videoRecorder_session_uid` bigint(20) default NULL, `entry_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK_NEW_75587508_CB8A58FFA3B0FADF` (`videoRecorder_session_uid`), CONSTRAINT `FK_NEW_75587508_CB8A58FFA3B0FADF` FOREIGN KEY (`videoRecorder_session_uid`) REFERENCES `tl_lavidr10_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_user` -- LOCK TABLES `tl_lavidr10_user` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavidr10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavidr10_videoRecorder` -- DROP TABLE IF EXISTS `tl_lavidr10_videoRecorder`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavidr10_videoRecorder` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `reflect_on_activity` bit(1) default NULL, `reflect_instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `author_recording_id` bigint(20) default NULL, `allow_use_voice` bit(1) default NULL, `allow_use_camera` bit(1) default NULL, `allow_learner_video_visibility` bit(1) default NULL, `allow_learner_video_export` bit(1) default NULL, `allow_comments` bit(1) default NULL, `allow_ratings` bit(1) default NULL, `export_offline` bit(1) default NULL, `export_all` bit(1) default NULL, PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavidr10_videoRecorder` -- LOCK TABLES `tl_lavidr10_videoRecorder` WRITE; /*!40000 ALTER TABLE `tl_lavidr10_videoRecorder` DISABLE KEYS */; INSERT INTO `tl_lavidr10_videoRecorder` VALUES (1,NULL,NULL,NULL,'VideoRecorder','Instructions',0x00,'',0x00,0x00,'','',0x00,0x00,18,NULL,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01); /*!40000 ALTER TABLE `tl_lavidr10_videoRecorder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavote11_content` -- DROP TABLE IF EXISTS `tl_lavote11_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavote11_content` ( `uid` bigint(20) NOT NULL auto_increment, `content_id` bigint(20) NOT NULL, `title` text, `instructions` text, `creation_date` datetime default NULL, `update_date` datetime default NULL, `maxNominationCount` varchar(20) NOT NULL default '1', `allowText` tinyint(1) NOT NULL default '0', `reflect` tinyint(1) NOT NULL default '0', `created_by` bigint(20) NOT NULL default '0', `run_offline` tinyint(1) NOT NULL default '0', `define_later` tinyint(1) NOT NULL default '0', `offline_instructions` text, `online_instructions` text, `content_in_use` tinyint(1) NOT NULL default '0', `lock_on_finish` tinyint(1) NOT NULL default '1', `retries` tinyint(1) NOT NULL default '0', `reflectionSubject` text, `show_results` tinyint(1) NOT NULL default '1', PRIMARY KEY (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavote11_content` -- LOCK TABLES `tl_lavote11_content` WRITE; /*!40000 ALTER TABLE `tl_lavote11_content` DISABLE KEYS */; INSERT INTO `tl_lavote11_content` VALUES (1,7,'Voting','Instructions','2009-05-21 17:33:20',NULL,'1',0,0,1,0,0,'','',0,0,0,NULL,1),(2,48,'Voting Demonstration','
\"\"
\n
Here’s a demonstration Voting activity.
\n
 
\n
While this particular activity is a little bit... trivial... there’s no reason why you can’t have a very large nomination form and collate responses from as many learners are on your server.
\n
 
\n
 
\n

What’s your favourite flavour for ice-cream?

',NULL,'2008-04-11 16:39:37','1',1,0,5,0,0,'','',0,0,0,'',1),(3,97,'Voting Demonstration','
\"\"
\n
Here’s a demonstration Voting activity.
\n
 
\n
While this particular activity is a little bit... trivial... there’s no reason why you can’t have a very large nomination form and collate responses from as many learners are on your server.
\n
 
\n
 
\n

What’s your favourite flavour for ice-cream?

',NULL,'2008-04-11 16:39:37','1',1,0,5,0,0,'','',0,0,0,'',1); /*!40000 ALTER TABLE `tl_lavote11_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavote11_nomination_content` -- DROP TABLE IF EXISTS `tl_lavote11_nomination_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavote11_nomination_content` ( `uid` bigint(20) NOT NULL auto_increment, `nomination` text, `display_order` int(5) default NULL, `vote_content_id` bigint(20) NOT NULL, PRIMARY KEY (`uid`), KEY `vote_content_id` (`vote_content_id`), CONSTRAINT `FK_tl_lavote11_nomination_content_1` FOREIGN KEY (`vote_content_id`) REFERENCES `tl_lavote11_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavote11_nomination_content` -- LOCK TABLES `tl_lavote11_nomination_content` WRITE; /*!40000 ALTER TABLE `tl_lavote11_nomination_content` DISABLE KEYS */; INSERT INTO `tl_lavote11_nomination_content` VALUES (1,'Sample Nomination 1',1,1),(2,'Sample Nomination 2',2,1),(3,'
Strawberry!
',1,2),(4,'
\n
Chocolate!
\n
\n
',2,2),(5,'
Vanilla!
\n\n',3,2),(6,'
Strawberry!
',1,3),(7,'
\n
Chocolate!
\n
\n
',2,3),(8,'
Vanilla!
\n\n',3,3); /*!40000 ALTER TABLE `tl_lavote11_nomination_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavote11_session` -- DROP TABLE IF EXISTS `tl_lavote11_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavote11_session` ( `uid` bigint(20) NOT NULL auto_increment, `vote_session_id` bigint(20) NOT NULL, `session_start_date` datetime default NULL, `session_end_date` datetime default NULL, `session_name` varchar(100) default NULL, `session_status` varchar(100) default NULL, `vote_content_id` bigint(20) NOT NULL, PRIMARY KEY (`uid`), UNIQUE KEY `UQ_tl_lamc11_session_1` (`vote_session_id`), KEY `vote_content_id` (`vote_content_id`), CONSTRAINT `FK_tl_lavote11_session_1` FOREIGN KEY (`vote_content_id`) REFERENCES `tl_lavote11_content` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavote11_session` -- LOCK TABLES `tl_lavote11_session` WRITE; /*!40000 ALTER TABLE `tl_lavote11_session` DISABLE KEYS */; INSERT INTO `tl_lavote11_session` VALUES (1,26,'2009-05-21 17:39:13',NULL,'Everybody learners','INCOMPLETE',3); /*!40000 ALTER TABLE `tl_lavote11_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavote11_uploadedfile` -- DROP TABLE IF EXISTS `tl_lavote11_uploadedfile`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavote11_uploadedfile` ( `submissionId` bigint(20) NOT NULL auto_increment, `uuid` varchar(255) NOT NULL, `isOnline_File` tinyint(1) NOT NULL, `filename` varchar(255) NOT NULL, `vote_content_id` bigint(20) NOT NULL, PRIMARY KEY (`submissionId`), KEY `vote_content_id` (`vote_content_id`), CONSTRAINT `FK_tablex_111` FOREIGN KEY (`vote_content_id`) REFERENCES `tl_lavote11_content` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavote11_uploadedfile` -- LOCK TABLES `tl_lavote11_uploadedfile` WRITE; /*!40000 ALTER TABLE `tl_lavote11_uploadedfile` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavote11_uploadedfile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavote11_usr` -- DROP TABLE IF EXISTS `tl_lavote11_usr`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavote11_usr` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `vote_session_id` bigint(20) NOT NULL, `username` varchar(255) default NULL, `fullname` varchar(255) default NULL, `responseFinalised` tinyint(1) NOT NULL default '0', `finalScreenRequested` tinyint(1) NOT NULL default '0', PRIMARY KEY (`uid`), KEY `vote_session_id` (`vote_session_id`), CONSTRAINT `FK_tl_lavote11_usr_1` FOREIGN KEY (`vote_session_id`) REFERENCES `tl_lavote11_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavote11_usr` -- LOCK TABLES `tl_lavote11_usr` WRITE; /*!40000 ALTER TABLE `tl_lavote11_usr` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavote11_usr` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lavote11_usr_attempt` -- DROP TABLE IF EXISTS `tl_lavote11_usr_attempt`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lavote11_usr_attempt` ( `uid` bigint(20) NOT NULL auto_increment, `que_usr_id` bigint(20) NOT NULL, `vote_nomination_content_id` bigint(20) NOT NULL, `attempt_time` datetime default NULL, `time_zone` varchar(255) default NULL, `userEntry` varchar(255) default NULL, `singleUserEntry` tinyint(1) NOT NULL default '0', `visible` tinyint(1) NOT NULL default '1', PRIMARY KEY (`uid`), KEY `que_usr_id` (`que_usr_id`), KEY `vote_nomination_content_id` (`vote_nomination_content_id`), CONSTRAINT `FK_tl_lavote11_usr_attempt_2` FOREIGN KEY (`que_usr_id`) REFERENCES `tl_lavote11_usr` (`uid`), CONSTRAINT `FK_tl_lavote11_usr_attempt_3` FOREIGN KEY (`vote_nomination_content_id`) REFERENCES `tl_lavote11_nomination_content` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lavote11_usr_attempt` -- LOCK TABLES `tl_lavote11_usr_attempt` WRITE; /*!40000 ALTER TABLE `tl_lavote11_usr_attempt` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lavote11_usr_attempt` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lawiki10_attachment` -- DROP TABLE IF EXISTS `tl_lawiki10_attachment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lawiki10_attachment` ( `uid` bigint(20) NOT NULL auto_increment, `file_version_id` bigint(20) default NULL, `file_type` varchar(255) default NULL, `file_name` varchar(255) default NULL, `file_uuid` bigint(20) default NULL, `create_date` datetime default NULL, `wiki_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK9406D87760B3B03B` (`wiki_uid`), CONSTRAINT `FK9406D87760B3B03B` FOREIGN KEY (`wiki_uid`) REFERENCES `tl_lawiki10_wiki` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lawiki10_attachment` -- LOCK TABLES `tl_lawiki10_attachment` WRITE; /*!40000 ALTER TABLE `tl_lawiki10_attachment` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lawiki10_attachment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lawiki10_session` -- DROP TABLE IF EXISTS `tl_lawiki10_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lawiki10_session` ( `uid` bigint(20) NOT NULL auto_increment, `session_end_date` datetime default NULL, `session_start_date` datetime default NULL, `status` int(11) default NULL, `session_id` bigint(20) default NULL, `session_name` varchar(250) default NULL, `wiki_uid` bigint(20) default NULL, `wiki_main_page_uid` bigint(20) default NULL, `content_folder_id` varchar(255) default NULL, PRIMARY KEY (`uid`), KEY `FKF01D63C260B3B03B` (`wiki_uid`), KEY `FKF01D63C2A3FF7EC0` (`wiki_main_page_uid`), CONSTRAINT `FKF01D63C2A3FF7EC0` FOREIGN KEY (`wiki_main_page_uid`) REFERENCES `tl_lawiki10_wiki_page` (`uid`), CONSTRAINT `FKF01D63C260B3B03B` FOREIGN KEY (`wiki_uid`) REFERENCES `tl_lawiki10_wiki` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lawiki10_session` -- LOCK TABLES `tl_lawiki10_session` WRITE; /*!40000 ALTER TABLE `tl_lawiki10_session` DISABLE KEYS */; INSERT INTO `tl_lawiki10_session` VALUES (1,NULL,NULL,NULL,10,'Everybody learners',3,7,'2c94e451216218b80121621c0b010011'); /*!40000 ALTER TABLE `tl_lawiki10_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lawiki10_user` -- DROP TABLE IF EXISTS `tl_lawiki10_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lawiki10_user` ( `uid` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) default NULL, `last_name` varchar(255) default NULL, `login_name` varchar(255) default NULL, `first_name` varchar(255) default NULL, `finishedActivity` bit(1) default NULL, `wiki_session_uid` bigint(20) default NULL, `entry_uid` bigint(20) default NULL, `wiki_edits` int(11) default NULL, PRIMARY KEY (`uid`), KEY `FKED5D7A1FD8004954` (`wiki_session_uid`), CONSTRAINT `FKED5D7A1FD8004954` FOREIGN KEY (`wiki_session_uid`) REFERENCES `tl_lawiki10_session` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lawiki10_user` -- LOCK TABLES `tl_lawiki10_user` WRITE; /*!40000 ALTER TABLE `tl_lawiki10_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tl_lawiki10_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lawiki10_wiki` -- DROP TABLE IF EXISTS `tl_lawiki10_wiki`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lawiki10_wiki` ( `uid` bigint(20) NOT NULL auto_increment, `create_date` datetime default NULL, `update_date` datetime default NULL, `create_by` bigint(20) default NULL, `title` varchar(255) default NULL, `instructions` text, `run_offline` bit(1) default NULL, `lock_on_finished` bit(1) default NULL, `allow_learner_create_pages` bit(1) default NULL, `allow_learner_insert_links` bit(1) default NULL, `allow_learner_attach_images` bit(1) default NULL, `notify_updates` bit(1) default NULL, `reflect_on_activity` bit(1) default NULL, `reflect_instructions` text, `minimum_edits` int(11) default NULL, `maximum_edits` int(11) default NULL, `online_instructions` text, `offline_instructions` text, `content_in_use` bit(1) default NULL, `define_later` bit(1) default NULL, `tool_content_id` bigint(20) default NULL, `wiki_main_page_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FKED5E3E04A3FF7EC0` (`wiki_main_page_uid`), CONSTRAINT `FKED5E3E04A3FF7EC0` FOREIGN KEY (`wiki_main_page_uid`) REFERENCES `tl_lawiki10_wiki_page` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lawiki10_wiki` -- LOCK TABLES `tl_lawiki10_wiki` WRITE; /*!40000 ALTER TABLE `tl_lawiki10_wiki` DISABLE KEYS */; INSERT INTO `tl_lawiki10_wiki` VALUES (1,NULL,NULL,NULL,'Wiki','Instructions',0x00,0x00,0x01,0x01,0x01,0x00,0x00,'',0,0,'','',0x00,0x00,15,1),(2,'2008-11-14 14:32:00','2008-11-10 12:53:27',5,'Wiki','Instructions',0x00,0x00,0x01,0x01,0x01,0x00,0x00,'',0,0,'','',0x00,0x00,53,3),(3,'2009-05-21 17:39:12','2008-11-10 12:53:27',5,'Wiki','Instructions',0x00,0x00,0x01,0x01,0x01,0x00,0x00,'',0,0,'','',0x00,0x00,85,5); /*!40000 ALTER TABLE `tl_lawiki10_wiki` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lawiki10_wiki_page` -- DROP TABLE IF EXISTS `tl_lawiki10_wiki_page`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lawiki10_wiki_page` ( `uid` bigint(20) NOT NULL auto_increment, `wiki_uid` bigint(20) default NULL, `title` varchar(255) default NULL, `editable` bit(1) default NULL, `wiki_current_content` bigint(20) default NULL, `added_by` bigint(20) default NULL, `wiki_session_uid` bigint(20) default NULL, PRIMARY KEY (`uid`), UNIQUE KEY `wiki_unique_key` (`wiki_uid`,`title`,`wiki_session_uid`), KEY `wiki_page_index_1` (`wiki_session_uid`), KEY `wiki_page_index_2` (`wiki_uid`), KEY `wiki_page_index_3` (`added_by`), KEY `wiki_page_index_4` (`wiki_current_content`), CONSTRAINT `wiki_page_fk_4` FOREIGN KEY (`wiki_current_content`) REFERENCES `tl_lawiki10_wiki_page_content` (`uid`), CONSTRAINT `wiki_page_fk_1` FOREIGN KEY (`wiki_session_uid`) REFERENCES `tl_lawiki10_session` (`uid`), CONSTRAINT `wiki_page_fk_2` FOREIGN KEY (`wiki_uid`) REFERENCES `tl_lawiki10_wiki` (`uid`), CONSTRAINT `wiki_page_fk_3` FOREIGN KEY (`added_by`) REFERENCES `tl_lawiki10_user` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lawiki10_wiki_page` -- LOCK TABLES `tl_lawiki10_wiki_page` WRITE; /*!40000 ALTER TABLE `tl_lawiki10_wiki_page` DISABLE KEYS */; INSERT INTO `tl_lawiki10_wiki_page` VALUES (1,1,'Wiki Main Page',0x01,1,NULL,NULL),(2,2,'Important Things to Know',0x01,2,NULL,NULL),(3,2,'Wiki Main Page',0x00,3,NULL,NULL),(4,3,'Important Things to Know',0x01,4,NULL,NULL),(5,3,'Wiki Main Page',0x00,5,NULL,NULL),(6,3,'Important Things to Know',0x01,6,NULL,1),(7,3,'Wiki Main Page',0x00,7,NULL,1); /*!40000 ALTER TABLE `tl_lawiki10_wiki_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tl_lawiki10_wiki_page_content` -- DROP TABLE IF EXISTS `tl_lawiki10_wiki_page_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tl_lawiki10_wiki_page_content` ( `uid` bigint(20) NOT NULL auto_increment, `wiki_page_uid` bigint(20) default NULL, `body` text, `editor` bigint(20) default NULL, `edit_date` datetime default NULL, `version` bigint(20) default NULL, PRIMARY KEY (`uid`), KEY `FK528051242D44CCF8` (`wiki_page_uid`), KEY `FK528051243233D952` (`editor`), CONSTRAINT `FK528051243233D952` FOREIGN KEY (`editor`) REFERENCES `tl_lawiki10_user` (`uid`), CONSTRAINT `FK528051242D44CCF8` FOREIGN KEY (`wiki_page_uid`) REFERENCES `tl_lawiki10_wiki_page` (`uid`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tl_lawiki10_wiki_page_content` -- LOCK TABLES `tl_lawiki10_wiki_page_content` WRITE; /*!40000 ALTER TABLE `tl_lawiki10_wiki_page_content` DISABLE KEYS */; INSERT INTO `tl_lawiki10_wiki_page_content` VALUES (1,1,'
Wiki Body
',NULL,NULL,0),(2,2,'
\n

There are some important things you should know about Wiki\'s:

\n\n
 
\n
 
\n
 
\n
You can edit this page by using the Edit link at the top right of your screen.
\n
',NULL,'2009-05-21 17:38:09',1),(3,3,'
\n
 
\n
New to LAMS 2.2!
\n

\"\" Wiki Activity

\n

The Wiki Tool allows for authors to create content pages that can link to each other and, optionally, allow Learners to make collaborative edits to the content provided.

\n

Wiki activities allow authors and learners to create sub pages, which can contain more refined content on the topic.

\n

Here are some links to other pages in this wiki activity:

\n\n
 
\n
If you want to explore this activity further, you should read the Wiki Learner’s guide, available online.
\n

 

\n
',NULL,'2009-05-21 17:38:09',3),(4,4,'
\n

There are some important things you should know about Wiki\'s:

\n\n
 
\n
 
\n
 
\n
You can edit this page by using the Edit link at the top right of your screen.
\n
',NULL,'2009-05-21 17:39:12',1),(5,5,'
\n
 
\n
New to LAMS 2.2!
\n

\"\" Wiki Activity

\n

The Wiki Tool allows for authors to create content pages that can link to each other and, optionally, allow Learners to make collaborative edits to the content provided.

\n

Wiki activities allow authors and learners to create sub pages, which can contain more refined content on the topic.

\n

Here are some links to other pages in this wiki activity:

\n\n
 
\n
If you want to explore this activity further, you should read the Wiki Learner’s guide, available online.
\n

 

\n
',NULL,'2009-05-21 17:39:12',3),(6,6,'
\n

There are some important things you should know about Wiki\'s:

\n\n
 
\n
 
\n
 
\n
You can edit this page by using the Edit link at the top right of your screen.
\n
',NULL,'2009-05-21 17:39:13',1),(7,7,'
\n
 
\n
New to LAMS 2.2!
\n

\"\" Wiki Activity

\n

The Wiki Tool allows for authors to create content pages that can link to each other and, optionally, allow Learners to make collaborative edits to the content provided.

\n

Wiki activities allow authors and learners to create sub pages, which can contain more refined content on the topic.

\n

Here are some links to other pages in this wiki activity:

\n\n
 
\n
If you want to explore this activity further, you should read the Wiki Learner’s guide, available online.
\n

 

\n
',NULL,'2009-05-21 17:39:13',3); /*!40000 ALTER TABLE `tl_lawiki10_wiki_page_content` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2009-05-21 7:43:24