Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/install/dokeos_main.sql

722 lines
30 KiB

-- MySQL dump 10.9
--
-- Host: localhost Database: dokeos_main
-- ------------------------------------------------------
-- Server version 4.1.14
/*!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 */;
/*!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 `admin`
--
DROP TABLE IF EXISTS `admin`;
CREATE TABLE `admin` (
`user_id` int(10) unsigned NOT NULL default '0',
UNIQUE KEY `user_id` (`user_id`)
);
--
-- Dumping data for table `admin`
--
/*!40000 ALTER TABLE `admin` DISABLE KEYS */;
LOCK TABLES `admin` WRITE;
INSERT INTO `admin` VALUES (1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `admin` ENABLE KEYS */;
--
-- Table structure for table `class`
--
DROP TABLE IF EXISTS `class`;
CREATE TABLE `class` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`code` varchar(40) default '',
`name` text NOT NULL,
PRIMARY KEY (`id`)
);
--
-- Dumping data for table `class`
--
/*!40000 ALTER TABLE `class` DISABLE KEYS */;
LOCK TABLES `class` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `class` ENABLE KEYS */;
--
-- Table structure for table `class_user`
--
DROP TABLE IF EXISTS `class_user`;
CREATE TABLE `class_user` (
`class_id` mediumint(8) unsigned NOT NULL default '0',
`user_id` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`class_id`,`user_id`)
);
--
-- Dumping data for table `class_user`
--
/*!40000 ALTER TABLE `class_user` DISABLE KEYS */;
LOCK TABLES `class_user` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `class_user` ENABLE KEYS */;
--
-- Table structure for table `course`
--
DROP TABLE IF EXISTS `course`;
CREATE TABLE `course` (
`code` varchar(40) NOT NULL,
`directory` varchar(40) default NULL,
`db_name` varchar(40) default NULL,
`course_language` varchar(20) default NULL,
`title` varchar(250) default NULL,
`description` text,
`category_code` varchar(40) default NULL,
`visibility` tinyint(4) default '0',
`show_score` int(11) NOT NULL default '1',
`tutor_name` varchar(200) default NULL,
`visual_code` varchar(40) default NULL,
`department_name` varchar(30) default NULL,
`department_url` varchar(180) default NULL,
`disk_quota` int(10) unsigned default NULL,
`last_visit` datetime default NULL,
`last_edit` datetime default NULL,
`creation_date` datetime default NULL,
`expiration_date` datetime default NULL,
`target_course_code` varchar(40) default NULL,
`subscribe` tinyint(4) NOT NULL default '1',
`unsubscribe` tinyint(4) NOT NULL default '1',
`registration_code` varchar(255) NOT NULL default '',
PRIMARY KEY (`code`)
);
--
-- Dumping data for table `course`
--
/*!40000 ALTER TABLE `course` DISABLE KEYS */;
LOCK TABLES `course` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `course` ENABLE KEYS */;
--
-- Table structure for table `course_category`
--
DROP TABLE IF EXISTS `course_category`;
CREATE TABLE `course_category` (
`id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(100) NOT NULL default '',
`code` varchar(40) NOT NULL default '',
`parent_id` varchar(40) default NULL,
`tree_pos` int(10) unsigned default NULL,
`children_count` smallint(6) default NULL,
`auth_course_child` enum('TRUE','FALSE') default 'TRUE',
`auth_cat_child` enum('TRUE','FALSE') default 'TRUE',
PRIMARY KEY (`id`),
UNIQUE KEY `code` (`code`),
KEY `parent_id` (`parent_id`),
KEY `tree_pos` (`tree_pos`)
);
--
-- Dumping data for table `course_category`
--
/*!40000 ALTER TABLE `course_category` DISABLE KEYS */;
LOCK TABLES `course_category` WRITE;
INSERT INTO `course_category` VALUES (1,'Language skills','LANG',NULL,1,0,'TRUE','TRUE'),(2,'PC Skills','PC',NULL,2,0,'TRUE','TRUE'),(3,'Projects','PROJ',NULL,3,0,'TRUE','TRUE');
UNLOCK TABLES;
/*!40000 ALTER TABLE `course_category` ENABLE KEYS */;
--
-- Table structure for table `course_module`
--
DROP TABLE IF EXISTS `course_module`;
CREATE TABLE `course_module` (
`id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(100) NOT NULL,
`link` varchar(255) NOT NULL,
`image` varchar(100) default NULL,
`row` int(10) unsigned NOT NULL default '0',
`column` int(10) unsigned NOT NULL default '0',
`position` varchar(20) NOT NULL default 'basic',
PRIMARY KEY (`id`)
);
--
-- Dumping data for table `course_module`
--
/*!40000 ALTER TABLE `course_module` DISABLE KEYS */;
LOCK TABLES `course_module` WRITE;
INSERT INTO `course_module` VALUES
(1,'calendar_event','calendar/agenda.php','agenda.gif',1,1,'basic'),
(2,'link','link/link.php','links.gif',4,1,'basic'),
(3,'document','document/document.php','documents.gif',3,1,'basic'),
(4,'student_publication','work/work.php','works.gif',3,2,'basic'),
(5,'announcement','announcements/announcements.php','valves.gif',2,1,'basic'),
(6,'user','user/user.php','members.gif',2,3,'basic'),
(7,'forum','forum/index.php','forum.gif',1,2,'basic'),
(8,'quiz','exercice/exercice.php','quiz.gif',2,2,'basic'),
(9,'group','group/group.php','group.gif',3,3,'basic'),
(10,'course_description','course_description/','info.gif',1,3,'basic'),
(11,'chat','chat/chat.php','chat.gif',0,0,'external'),
(12,'dropbox','dropbox/index.php','dropbox.gif',4,2,'basic'),
(13,'tracking','tracking/courseLog.php','statistics.gif',1,3,'courseadmin'),
(14,'homepage_link','link/link.php?action=addlink','npage.gif',1,1,'courseadmin'),
(15,'course_setting','course_info/infocours.php','reference.gif',1,1,'courseadmin'),
(16,'External','','external.gif',0,0,'external'),
(17,'AddedLearnpath','','scormbuilder.gif',0,0,'external'),
(18,'conference','online/online.php','conf.gif',0,0,'external'),
(19,'learnpath','newscorm/lp_controller.php','scorm.gif',5,1,'basic'),
(20,'blog','blog/blog.php','blog.gif',1,2,'basic'),
(21,'blog_management','blog/blog_admin.php','blog_admin.gif',1,2,'courseadmin'),
(22,'course_maintenance','course_info/maintenance.php','backup.gif',2,3,'courseadmin'),
(23,'survey','survey/survey_list.php','survey.gif',2,1,'courseadmin');
UNLOCK TABLES;
/*!40000 ALTER TABLE `course_module` ENABLE KEYS */;
--
-- Table structure for table `course_rel_class`
--
DROP TABLE IF EXISTS `course_rel_class`;
CREATE TABLE `course_rel_class` (
`course_code` char(40) NOT NULL,
`class_id` mediumint(8) unsigned NOT NULL,
PRIMARY KEY (`course_code`,`class_id`)
);
--
-- Dumping data for table `course_rel_class`
--
/*!40000 ALTER TABLE `course_rel_class` DISABLE KEYS */;
LOCK TABLES `course_rel_class` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `course_rel_class` ENABLE KEYS */;
--
-- Table structure for table `course_rel_user`
--
DROP TABLE IF EXISTS `course_rel_user`;
CREATE TABLE `course_rel_user` (
`course_code` varchar(40) NOT NULL,
`user_id` int(10) unsigned NOT NULL default '0',
`status` tinyint(4) NOT NULL default '5',
`role` varchar(60) default NULL,
`group_id` int(11) NOT NULL default '0',
`tutor_id` int(10) unsigned NOT NULL default '0',
`sort` int(11) default NULL,
`user_course_cat` int(11) default '0',
PRIMARY KEY (`course_code`,`user_id`)
);
--
-- Dumping data for table `course_rel_user`
--
/*!40000 ALTER TABLE `course_rel_user` DISABLE KEYS */;
LOCK TABLES `course_rel_user` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `course_rel_user` ENABLE KEYS */;
--
-- Table structure for table `language`
--
DROP TABLE IF EXISTS `language`;
CREATE TABLE `language` (
`id` tinyint(3) unsigned NOT NULL auto_increment,
`original_name` varchar(255) default NULL,
`english_name` varchar(255) default NULL,
`isocode` varchar(10) default NULL,
`dokeos_folder` varchar(250) default NULL,
`available` tinyint(4) NOT NULL default '1',
PRIMARY KEY (`id`)
);
--
-- Dumping data for table `language`
--
/*!40000 ALTER TABLE `language` DISABLE KEYS */;
LOCK TABLES `language` WRITE;
INSERT INTO `language` VALUES
(1,'Arabija (el)','arabic','ar','arabic',0),
(2,'Português (Brazil)','brazilian','pt-BR','brazilian',1),
(3,'Balgarski','bulgarian','bg','bulgarian',1),
(4,'Català','catalan','ca','catalan',0),
(5,'Hrvatski','croatian','hr','croatian',0),
(6,'Dansk','danish','da','danish',1),
(7,'Nederlands','dutch','nl','dutch',1),
(8,'English','english','en','english',1),
(9,'Suomi','finnish','fi','finnish',1),
(10,'Français','french','fr','french',1),
(11,'Galego','galician','gl','galician',1),
(12,'Deutsch','german','de','german',1),
(13,'Ellinika','greek','el','greek',0),
(14,'Magyar','hungarian','hu','hungarian',1),
(15,'Indonesia (Bahasa I.)','indonesian','id','indonesian',1),
(16,'Italiano','italian','it','italian',1),
(17,'Nihongo','japanese','ja','japanese',0),
(18,'Melayu (Bahasa M.)','malay','ms','malay',0),
(19,'Polski','polish','pl','polish',1),
(20,'Português (Portugal)','portuguese','pt','portuguese',1),
(21,'Russkij','russian','ru','russian',1),
(22,'Chinese (simplified)','simpl_chinese','zh','simpl_chinese',1),
(23,'Slovenscina','slovenian','sl','slovenian',1),
(24,'Español','spanish','es','spanish',1),
(25,'Svenska','swedish','sv','swedish',1),
(26,'Thai','thai','th','thai',1),
(27,'Türkçe','turkce','tr','turkce',0),
(28,'Viêt (Tiêng V.)','vietnamese','vi','vietnamese',0),
(29,'Norsk','norwegian','no','norwegian',1),
(30,'Farsi','persian','fa','persian',1),
(31,'Srpski','serbian','sr','serbian',1),
(32,'Bosanski','bosnian',NULL,'bosnian',1),
(33,'Swahili (kiSw.)','swahili','sw','swahili',0),
(34,'Esperanto','esperanto','eo','esperanto',1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `language` ENABLE KEYS */;
--
-- Table structure for table `php_session`
--
DROP TABLE IF EXISTS php_session;
CREATE TABLE php_session (
session_id varchar(32) NOT NULL default '',
session_name varchar(10) NOT NULL default '',
session_time int(11) NOT NULL default '0',
session_start int(11) NOT NULL default '0',
session_value text NOT NULL,
PRIMARY KEY (`session_id`)
);
--
-- Table structure for table `session`
--
DROP TABLE IF EXISTS `session`;
CREATE TABLE `session` (
`id` smallint(5) unsigned NOT NULL auto_increment,
`id_coach` int(10) unsigned NOT NULL default '0',
`name` char(50) NOT NULL default '',
`nbr_courses` smallint(5) unsigned NOT NULL default '0',
`nbr_users` mediumint(8) unsigned NOT NULL default '0',
`nbr_classes` mediumint(8) unsigned NOT NULL default '0',
`date_start` date NOT NULL default '0000-00-00',
`date_end` date NOT NULL default '0000-00-00',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
);
-- --------------------------------------------------------
--
-- Table structure for table `session_rel_course`
--
DROP TABLE IF EXISTS `session_rel_course`;
CREATE TABLE `session_rel_course` (
`id_session` smallint(5) unsigned NOT NULL default '0',
`course_code` char(40) NOT NULL default '',
`id_coach` int(10) unsigned NOT NULL default '0',
`nbr_users` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`id_session`,`course_code`),
KEY `course_code` (`course_code`)
);
-- --------------------------------------------------------
--
-- Table structure for table `session_rel_course_rel_user`
--
DROP TABLE IF EXISTS `session_rel_course_rel_user`;
CREATE TABLE `session_rel_course_rel_user` (
`id_session` smallint(5) unsigned NOT NULL default '0',
`course_code` char(40) NOT NULL default '',
`id_user` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id_session`,`course_code`,`id_user`),
KEY `id_user` (`id_user`),
KEY `course_code` (`course_code`)
);
-- --------------------------------------------------------
--
-- Table structure for table `session_rel_user`
--
DROP TABLE IF EXISTS `session_rel_user`;
CREATE TABLE `session_rel_user` (
`id_session` mediumint(8) unsigned NOT NULL default '0',
`id_user` mediumint(8) unsigned NOT NULL default '0',
PRIMARY KEY (`id_session`,`id_user`)
);
--
-- Table structure for table `settings_current`
--
DROP TABLE IF EXISTS `settings_current`;
CREATE TABLE `settings_current` (
`id` int(10) unsigned NOT NULL auto_increment,
`variable` varchar(255) default NULL,
`subkey` varchar(255) default NULL,
`type` varchar(255) default NULL,
`category` varchar(255) default NULL,
`selected_value` varchar(255) default NULL,
`title` varchar(255) NOT NULL default '',
`comment` varchar(255) default NULL,
`scope` varchar(50) default NULL,
`subkeytext` varchar(255) default NULL,
UNIQUE KEY `id` (`id`)
);
--
-- Dumping data for table `settings_current`
--
/*!40000 ALTER TABLE `settings_current` DISABLE KEYS */;
LOCK TABLES `settings_current` WRITE;
INSERT INTO `settings_current` VALUES
(1,'Institution',NULL,'textfield','Platform','{ORGANISATIONNAME}','InstitutionTitle','InstitutionComment','platform',NULL),
(2,'InstitutionUrl',NULL,'textfield','Platform','{ORGANISATIONURL}','InstitutionUrlTitle','InstitutionUrlComment',NULL,NULL),
(3,'siteName',NULL,'textfield','Platform','{CAMPUSNAME}','SiteNameTitle','SiteNameComment',NULL,NULL),
(4,'emailAdministrator',NULL,'textfield','Platform','{ADMINEMAIL}','emailAdministratorTitle','emailAdministratorComment',NULL,NULL),
(5,'administratorSurname',NULL,'textfield','Platform','{ADMINLASTNAME}','administratorSurnameTitle','administratorSurnameComment',NULL,NULL),
(6,'administratorName',NULL,'textfield','Platform','{ADMINFIRSTNAME}','administratorNameTitle','administratorNameComment',NULL,NULL),
(7,'show_administrator_data',NULL,'radio','Platform','true','ShowAdministratorDataTitle','ShowAdministratorDataComment',NULL,NULL),
(8,'homepage_view',NULL,'radio','Course','activity','HomepageViewTitle','HomepageViewComment',NULL,NULL),
(9,'show_toolshortcuts',NULL,'radio','Course','false','ShowToolShortcutsTitle','ShowToolShortcutsComment',NULL,NULL),
(10,'show_student_view',NULL,'radio','Course','true','ShowStudentViewTitle','ShowStudentViewComment',NULL,NULL),
(11,'allow_group_categories',NULL,'radio','Course','false','AllowGroupCategories','AllowGroupCategoriesComment',NULL,NULL),
(12,'server_type',NULL,'radio','Platform','production','ServerStatusTitle','ServerStatusComment',NULL,NULL),
(13,'platformLanguage',NULL,'link','Languages','{PLATFORMLANGUAGE}','PlatformLanguageTitle','PlatformLanguageComment',NULL,NULL),
(14,'showonline','world','checkbox','Platform','true','ShowOnlineTitle','ShowOnlineComment',NULL,'ShowOnlineWorld'),
(15,'showonline','users','checkbox','Platform','true','ShowOnlineTitle','ShowOnlineComment',NULL,'ShowOnlineUsers'),
(16,'showonline','course','checkbox','Platform','true','ShowOnlineTitle','ShowOnlineComment',NULL,'ShowOnlineCourse'),
(17,'profile','name','checkbox','User','false','ProfileChangesTitle','ProfileChangesComment',NULL,'name'),
(18,'profile','officialcode','checkbox','User','false','ProfileChangesTitle','ProfileChangesComment',NULL,'officialcode'),
(19,'profile','email','checkbox','User','false','ProfileChangesTitle','ProfileChangesComment',NULL,'Email'),
(20,'profile','picture','checkbox','User','false','ProfileChangesTitle','ProfileChangesComment',NULL,'UserPicture'),
(21,'profile','login','checkbox','User','false','ProfileChangesTitle','ProfileChangesComment',NULL,'Login'),
(22,'profile','password','checkbox','User','false','ProfileChangesTitle','ProfileChangesComment',NULL,'UserPassword'),
(23,'profile','language','checkbox','User','true','ProfileChangesTitle','ProfileChangesComment',NULL,'Language'),
(24,'default_document_quotum',NULL,'textfield','Course','50000000','DefaultDocumentQuotumTitle','DefaultDocumentQuotumComment',NULL,NULL),
(25,'registration','officialcode','checkbox','User','true','RegistrationRequiredFormsTitle','RegistrationRequiredFormsComment',NULL,'OfficialCode'),
(26,'registration','email','checkbox','User','true','RegistrationRequiredFormsTitle','RegistrationRequiredFormsComment',NULL,'Email'),
(27,'registration','language','checkbox','User','true','RegistrationRequiredFormsTitle','RegistrationRequiredFormsComment',NULL,'Language'),
(28,'default_group_quotum',NULL,'textfield','Course','5000000','DefaultGroupQuotumTitle','DefaultGroupQuotumComment',NULL,NULL),
(29,'allow_registration',NULL,'radio','Platform','{ALLOWSELFREGISTRATION}','AllowRegistrationTitle','AllowRegistrationComment',NULL,NULL),
(30,'allow_registration_as_teacher',NULL,'radio','Platform','{ALLOWTEACHERSELFREGISTRATION}','AllowRegistrationAsTeacherTitle','AllowRegistrationAsTeacherComment',NULL,NULL),
(31,'allow_lostpassword',NULL,'radio','Platform','true','AllowLostPasswordTitle','AllowLostPasswordComment',NULL,NULL),
(32,'allow_user_headings',NULL,'radio','Course','false','AllowUserHeadings','AllowUserHeadingsComment',NULL,NULL),
(33,'course_create_active_tools','course_description','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'CourseDescription'),
(34,'course_create_active_tools','agenda','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Agenda'),
(35,'course_create_active_tools','documents','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Documents'),
(36,'course_create_active_tools','learning_path','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'LearningPath'),
(37,'course_create_active_tools','links','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Links'),
(38,'course_create_active_tools','announcements','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Announcements'),
(39,'course_create_active_tools','forums','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Forums'),
(40,'course_create_active_tools','dropbox','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Dropbox'),
(41,'course_create_active_tools','quiz','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Quiz'),
(42,'course_create_active_tools','users','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Users'),
(43,'course_create_active_tools','groups','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Groups'),
(44,'course_create_active_tools','chat','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Chat'),
(45,'course_create_active_tools','online_conference','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'OnlineConference'),
(46,'course_create_active_tools','student_publications','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'StudentPublications'),
(47,'allow_personal_agenda',NULL,'radio','User','false','AllowPersonalAgendaTitle','AllowPersonalAgendaComment',NULL,NULL),
(48,'display_coursecode_in_courselist',NULL,'radio','Platform','true','DisplayCourseCodeInCourselistTitle','DisplayCourseCodeInCourselistComment',NULL,NULL),
(49,'display_teacher_in_courselist',NULL,'radio','Platform','true','DisplayTeacherInCourselistTitle','DisplayTeacherInCourselistComment',NULL,NULL),
(50,'use_document_title',NULL,'radio','Tools','true','UseDocumentTitleTitle','UseDocumentTitleComment',NULL,NULL),
(51,'permanently_remove_deleted_files','NULL','radio','Tools','false','PermanentlyRemoveFilesTitle','PermanentlyRemoveFilesComment',NULL,NULL),
(52,'dropbox_allow_overwrite',NULL,'radio','Tools','true','DropboxAllowOverwriteTitle','DropboxAllowOverwriteComment',NULL,NULL),
(53,'dropbox_max_filesize',NULL,'textfield','Tools','100000000','DropboxMaxFilesizeTitle','DropboxMaxFilesizeComment',NULL,NULL),
(54,'dropbox_allow_just_upload',NULL,'radio','Tools','true','DropboxAllowJustUploadTitle','DropboxAllowJustUploadComment',NULL,NULL),
(55,'dropbox_allow_student_to_student',NULL,'radio','Tools','true','DropboxAllowStudentToStudentTitle','DropboxAllowStudentToStudentComment',NULL,NULL),
(56,'dropbox_allow_group',NULL,'radio','Tools','true','DropboxAllowGroupTitle','DropboxAllowGroupComment',NULL,NULL),
(57,'dropbox_allow_mailing',NULL,'radio','Tools','false','DropboxAllowMailingTitle','DropboxAllowMailingComment',NULL,NULL),
(58,'administratorTelephone',NULL,'textfield','Platform','(000) 001 02 03','administratorTelephoneTitle','administratorTelephoneComment',NULL,NULL),
(59,'extended_profile',NULL,'radio','User','false','ExtendedProfileTitle','ExtendedProfileComment',NULL,NULL),
(60,'student_view_enabled',NULL,'radio','Platform','true','StudentViewEnabledTitle','StudentViewEnabledComment',NULL,NULL),
(61,'show_navigation_menu',NULL,'radio','Course','false','ShowNavigationMenuTitle','ShowNavigationMenuComment',NULL,NULL),
(62,'enable_tool_introduction',NULL,'radio','course','false','EnableToolIntroductionTitle','EnableToolIntroductionComment',NULL,NULL),
(63, 'page_after_login', NULL, 'radio','Platform','user_portal.php', 'PageAfterLoginTitle','PageAfterLoginComment', NULL, NULL),
(64, 'time_limit_whosonline', NULL, 'textfield','Platform','30', 'TimeLimitWhosonlineTitle','TimeLimitWhosonlineComment', NULL, NULL),
(65, 'breadcrumbs_course_homepage', NULL, 'radio','Course','course_title', 'BreadCrumbsCourseHomepageTitle','BreadCrumbsCourseHomepageComment', NULL, NULL),
(66, 'example_material_course_creation', NULL, 'radio','Platform','true', 'ExampleMaterialCourseCreationTitle','ExampleMaterialCourseCreationComment', NULL, NULL),
(67,'account_valid_duration',NULL, 'textfield','Platform','3660', 'AccountValidDurationTitle','AccountValidDurationComment', NULL, NULL),
(68, 'use_session_mode', NULL, 'radio','Platform','false', 'UseSessionModeTitle','UseSessionModeComment', NULL, NULL),
(69, 'allow_email_editor', NULL, 'radio', 'Tools', 'false', 'AllowEmailEditorTitle', 'AllowEmailEditorComment', NULL, NULL),
(70, 'registered', NULL, 'textfield', NULL, 'false', NULL, NULL, NULL, NULL),
(71, 'donotlistcampus', NULL, 'textfield', NULL, 'false', NULL, NULL, NULL, NULL),
(72, 'show_email_addresses', NULL,'radio','Platform','false','ShowEmailAddresses','ShowEmailAddressesComment',NULL,NULL),
(73,'profile','phone','checkbox','User','true','ProfileChangesTitle','ProfileChangesComment',NULL,'phone'),
(74, 'Ajax_course_tracking_refresh', NULL, 'textfield','Course','0', 'Ajax_course_tracking_refresh','Ajax_course_tracking_refresh_comment', NULL, NULL),
(75, 'service_visio', 'active', 'radio',NULL,'false', 'visio_actived','', NULL, NULL),
(76, 'service_visio', 'url', 'textfield',NULL,'', 'visio_url','', NULL, NULL),
(77, 'service_ppt2lp', 'active', 'radio',NULL,'false', 'ppt2lp_actived','', NULL, NULL),
(78, 'service_ppt2lp', 'host', NULL, NULL, NULL, 'Host', NULL, NULL, NULL),
(79, 'service_ppt2lp', 'user', NULL, NULL, NULL, 'UserOnHost', NULL, NULL, NULL),
(80, 'service_ppt2lp', 'ftp_password', NULL, NULL, NULL, 'FtpPassword', NULL, NULL, NULL),
(81, 'service_ppt2lp', 'path_to_lzx', NULL, NULL, NULL, '', NULL, NULL, NULL),
(82, 'wcag_anysurfer_public_pages', NULL, 'radio','Platform','false','PublicPagesComplyToWAITitle','PublicPagesComplyToWAIComment', NULL, NULL);
UNLOCK TABLES;
/*!40000 ALTER TABLE `settings_current` ENABLE KEYS */;
--
-- Table structure for table `settings_options`
--
DROP TABLE IF EXISTS `settings_options`;
CREATE TABLE `settings_options` (
`id` int(10) unsigned NOT NULL auto_increment,
`variable` varchar(255) default NULL,
`value` varchar(255) default NULL,
`display_text` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
);
--
-- Dumping data for table `settings_options`
--
/*!40000 ALTER TABLE `settings_options` DISABLE KEYS */;
LOCK TABLES `settings_options` WRITE;
INSERT INTO `settings_options` VALUES
(11,'show_administrator_data','true','Yes'),
(12,'show_administrator_data','false','No'),
(13,'homepage_view','activity','HomepageViewActivity'),
(14,'homepage_view','2column','HomepageView2column'),
(15,'homepage_view','3column','HomepageView3column'),
(16,'show_toolshortcuts','true','Yes'),
(17,'show_toolshortcuts','false','No'),
(18,'show_student_view','true','Yes'),
(19,'show_student_view','false','No'),
(20,'allow_group_categories','true','Yes'),
(21,'allow_group_categories','false','No'),
(22,'server_type','production','ProductionServer'),
(23,'server_type','test','TestServer'),
(26,'allow_name_change','true','Yes'),
(27,'allow_name_change','false','No'),
(28,'allow_officialcode_change','true','Yes'),
(29,'allow_officialcode_change','false','No'),
(30,'allow_registration','true','Yes'),
(31,'allow_registration','false','No'),
(32,'allow_registration','approval','AfterApproval'),
(33,'allow_registration_as_teacher','true','Yes'),
(34,'allow_registration_as_teacher','false','No'),
(35,'allow_lostpassword','true','Yes'),
(36,'allow_lostpassword','false','No'),
(37,'allow_user_headings','true','Yes'),
(38,'allow_user_headings','false','No'),
(39,'allow_personal_agenda','true','Yes'),
(40,'allow_personal_agenda','false','No'),
(41,'display_coursecode_in_courselist','true','Yes'),
(42,'display_coursecode_in_courselist','false','No'),
(43,'display_teacher_in_courselist','true','Yes'),
(44,'display_teacher_in_courselist','false','No'),
(45,'use_document_title','true','Yes'),
(46,'use_document_title','false','No'),
(47,'permanently_remove_deleted_files','true','Yes'),
(48,'permanently_remove_deleted_files','false','No'),
(49,'dropbox_allow_overwrite','true','Yes'),
(50,'dropbox_allow_overwrite','false','No'),
(51,'dropbox_allow_just_upload','true','Yes'),
(52,'dropbox_allow_just_upload','false','No'),
(53,'dropbox_allow_student_to_student','true','Yes'),
(54,'dropbox_allow_student_to_student','false','No'),
(55,'dropbox_allow_group','true','Yes'),
(56,'dropbox_allow_group','false','No'),
(57,'dropbox_allow_mailing','true','Yes'),
(58,'dropbox_allow_mailing','false','No'),
(59,'extended_profile','true','Yes'),
(60,'extended_profile','false','No'),
(61,'student_view_enabled','true','Yes'),
(62,'student_view_enabled','false','No'),
(63,'show_navigation_menu','false','No'),
(64,'show_navigation_menu','icons','IconsOnly'),
(65,'show_navigation_menu','text','TextOnly'),
(66,'show_navigation_menu','iconstext','IconsText'),
(67,'enable_tool_introduction','true','Yes'),
(68,'enable_tool_introduction','false','No'),
(69, 'page_after_login', 'index.php', 'CampusHomepage'),
(70, 'page_after_login', 'user_portal.php', 'MyCourses'),
(71,'breadcrumbs_course_homepage', 'get_lang', 'CourseHomepage'),
(72,'breadcrumbs_course_homepage', 'course_code', 'CourseCode'),
(73,'breadcrumbs_course_homepage', 'course_title', 'CourseTitle'),
(74,'example_material_course_creation', 'true', 'Yes'),
(75,'example_material_course_creation', 'false', 'No'),
(76,'use_session_mode', 'true', 'Yes'),
(77,'use_session_mode', 'false', 'No'),
(78,'allow_email_editor', 'true' ,'Yes'),
(79,'allow_email_editor', 'false', 'No'),
(80,'show_email_addresses','true','Yes'),
(81,'show_email_addresses','false','No'),
(82,'wcag_anysurfer_public_pages', 'true', 'Yes'),
(83,'wcag_anysurfer_public_pages', 'false', 'No');
UNLOCK TABLES;
/*!40000 ALTER TABLE `settings_options` ENABLE KEYS */;
--
-- Table structure for table `sys_announcement`
--
DROP TABLE IF EXISTS `sys_announcement`;
CREATE TABLE `sys_announcement` (
`id` int(10) unsigned NOT NULL auto_increment,
`date_start` datetime NOT NULL default '0000-00-00 00:00:00',
`date_end` datetime NOT NULL default '0000-00-00 00:00:00',
`visible_teacher` enum('0','1') NOT NULL default '0',
`visible_student` enum('0','1') NOT NULL default '0',
`visible_guest` enum('0','1') NOT NULL default '0',
`title` varchar(250) NOT NULL default '',
`content` text NOT NULL,
`lang` varchar(70) NULL default NULL,
PRIMARY KEY (`id`)
);
--
-- Dumping data for table `sys_announcement`
--
/*!40000 ALTER TABLE `sys_announcement` DISABLE KEYS */;
LOCK TABLES `sys_announcement` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `sys_announcement` ENABLE KEYS */;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`user_id` int(10) unsigned NOT NULL auto_increment,
`lastname` varchar(60) default NULL,
`firstname` varchar(60) default NULL,
`username` varchar(20) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
`auth_source` varchar(50) default 'platform',
`email` varchar(100) default NULL,
`status` tinyint(4) NOT NULL default '5',
`official_code` varchar(40) default NULL,
`phone` varchar(30) default NULL,
`picture_uri` varchar(250) default NULL,
`creator_id` int(10) unsigned default NULL,
`competences` text,
`diplomas` text,
`openarea` text,
`teach` text,
`productions` varchar(250) default NULL,
`chatcall_user_id` int(10) unsigned NOT NULL default '0',
`chatcall_date` datetime NOT NULL default '0000-00-00 00:00:00',
`chatcall_text` varchar(50) NOT NULL default '',
`language` varchar(40) default NULL,
`registration_date` datetime NOT NULL default '0000-00-00 00:00:00',
`expiration_date` datetime NOT NULL default '0000-00-00 00:00:00',
`active` enum('0','1') NOT NULL default '1',
PRIMARY KEY (`user_id`),
UNIQUE KEY `username` (`username`)
);
--
-- Dumping data for table `user`
--
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
LOCK TABLES `user` WRITE;
INSERT INTO `user` VALUES (1,'{ADMINLASTNAME}','{ADMINFIRSTNAME}','{ADMINLOGIN}','{ADMINPASSWORD}','{PLATFORM_AUTH_SOURCE}','{ADMINEMAIL}',1,'ADMIN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'0000-00-00 00:00:00','',NULL,NOW(),'0000-00-00 00:00:00','1');
UNLOCK TABLES;
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
--
-- Table structure for table `course_rel_survey`
--
CREATE TABLE `course_rel_survey` (
`id` int(100) NOT NULL auto_increment,
`course_code` varchar(200) default NULL,
`db_name` varchar(200) default NULL,
`survey_id` varchar(200) default NULL,
PRIMARY KEY (`id`)
);
-- --------------------------------------------------------
--
-- Table structure for table `survey_reminder`
--
CREATE TABLE `survey_reminder` (
`sid` int(11) NOT NULL default '0',
`db_name` varchar(100) NOT NULL default '',
`email` varchar(100) NOT NULL default '',
`access` int(11) NOT NULL default '0',
`subject` text NOT NULL,
`content` text NOT NULL,
`reminder_choice` int(11) NOT NULL default '0',
`reminder_time` text NOT NULL,
`avail_till` date NOT NULL default '0000-00-00'
) ;
-- --------------------------------------------------------
--
-- Table structure for table `survey_user_info`
--
CREATE TABLE `survey_user_info` (
`id` int(11) NOT NULL auto_increment,
`user_id` int(11) NOT NULL default '0',
`survey_id` int(11) NOT NULL default '0',
`db_name` varchar(200) default NULL,
`firstname` varchar(200) default NULL,
`lastname` varchar(200) default NULL,
`email` varchar(200) default NULL,
`organization` text,
`age` int(11) default NULL,
`registered` char(1) default NULL,
`attempted` varchar(10) NOT NULL default '',
PRIMARY KEY (`id`)
);