mirror of
https://github.com/CAcertOrg/cats.git
synced 2024-11-03 12:44:03 +00:00
216 lines
8.7 KiB
SQL
Executable file
216 lines
8.7 KiB
SQL
Executable file
-- MySQL dump 10.11
|
|
--
|
|
-- Host: localhost Database: cats_db
|
|
-- ------------------------------------------------------
|
|
-- Server version 5.0.45
|
|
|
|
/*!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 `answers`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `answers`;
|
|
CREATE TABLE `answers` (
|
|
`a_id` int(11) NOT NULL auto_increment,
|
|
`q_id` int(11) NOT NULL default '0',
|
|
`answer` text collate latin1_general_ci NOT NULL,
|
|
`correct` tinyint(1) NOT NULL default '0',
|
|
PRIMARY KEY (`a_id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1529 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
|
|
--
|
|
-- Table structure for table `answers_incorrect`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `answers_incorrect`;
|
|
CREATE TABLE `answers_incorrect` (
|
|
`lp_id` int(11) NOT NULL default '0',
|
|
`q_id` int(11) NOT NULL default '0',
|
|
PRIMARY KEY (`lp_id`,`q_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
|
|
--
|
|
-- Table structure for table `learnprogress`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `learnprogress`;
|
|
CREATE TABLE `learnprogress` (
|
|
`lp_id` int(11) NOT NULL auto_increment COMMENT 'Schlüssel',
|
|
`user_id` varchar(15) collate latin1_general_ci NOT NULL default '0',
|
|
`root` set('CA Cert Signing Authority','CAcert Class 3 Root') collate latin1_general_ci NOT NULL default '',
|
|
`date` datetime NOT NULL default '0000-00-00 00:00:00' COMMENT 'Uhrzeit und Datum',
|
|
`t_id` int(11) NOT NULL default '0' COMMENT 'Themen ID',
|
|
`number` int(11) NOT NULL default '0' COMMENT 'Anzahl der Fragen',
|
|
`correct` int(11) NOT NULL default '0' COMMENT 'Richtige Fragen',
|
|
`wrong` int(11) NOT NULL default '0' COMMENT 'Anzahl der falschen Antworten',
|
|
`percentage` decimal(5,0) default NULL,
|
|
`uploaded` tinyint(1) default NULL,
|
|
PRIMARY KEY (`lp_id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=178 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
|
|
--
|
|
-- Table structure for table `question_description`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `question_description`;
|
|
CREATE TABLE `question_description` (
|
|
`q_id` int(11) NOT NULL default '0',
|
|
`description` text collate latin1_general_ci NOT NULL,
|
|
PRIMARY KEY (`q_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
--
|
|
-- Table structure for table `questions`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `questions`;
|
|
CREATE TABLE `questions` (
|
|
`q_id` int(11) NOT NULL auto_increment COMMENT 'Primärschlüssel',
|
|
`qt_id` int(11) NOT NULL default '0' COMMENT 'Fragetyp',
|
|
`t_id` int(11) NOT NULL default '0' COMMENT 'Topic_id',
|
|
`question` text collate latin1_general_ci NOT NULL COMMENT 'Frage',
|
|
`active` enum('1','0') collate latin1_general_ci NOT NULL default '0',
|
|
`description` enum('1','0') collate latin1_general_ci NOT NULL default '0',
|
|
`ref_q_id` int(11) default NULL,
|
|
`translationstatus` int(11) default NULL,
|
|
PRIMARY KEY (`q_id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=245 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Fragen';
|
|
|
|
|
|
--
|
|
-- Table structure for table `questiontype`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `questiontype`;
|
|
CREATE TABLE `questiontype` (
|
|
`qt_id` int(11) NOT NULL auto_increment COMMENT 'Fragetypenschlüssel',
|
|
`DE` varchar(25) collate latin1_general_ci NOT NULL default '' COMMENT 'Fragetyp',
|
|
`EN` varchar(25) collate latin1_general_ci NOT NULL default '',
|
|
PRIMARY KEY (`qt_id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Fragetypen';
|
|
|
|
--
|
|
-- Dumping data for table `questiontype`
|
|
--
|
|
|
|
LOCK TABLES `questiontype` WRITE;
|
|
/*!40000 ALTER TABLE `questiontype` DISABLE KEYS */;
|
|
INSERT INTO `questiontype` VALUES (1,'Einfachauswahl','single selection'),(2,'Mehrfachauswahl','multiple choice'),(3,'Richtig / Falsch','true / false'),(4,'L?ckentext','fill in the blanks');
|
|
/*!40000 ALTER TABLE `questiontype` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `statistics`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `statistics`;
|
|
CREATE TABLE `statistics` (
|
|
`stat_id` int(11) NOT NULL auto_increment COMMENT 'Primärschlüssel',
|
|
`q_id` int(11) NOT NULL default '0' COMMENT 'Frage Id',
|
|
`count` int(11) NOT NULL default '0' COMMENT 'Zählen von Antworten',
|
|
PRIMARY KEY (`stat_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
|
|
--
|
|
-- Table structure for table `topics`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `topics`;
|
|
CREATE TABLE `topics` (
|
|
`t_id` int(11) NOT NULL auto_increment COMMENT 'Primärschlüssel',
|
|
`topic` varchar(50) collate latin1_general_ci NOT NULL default '' COMMENT 'Thema',
|
|
`active` tinyint(1) NOT NULL default '0',
|
|
`numOfQu` tinyint(4) NOT NULL default '0',
|
|
`percentage` tinyint(4) NOT NULL default '0',
|
|
`lang` varchar(42) collate latin1_general_ci default NULL,
|
|
PRIMARY KEY (`t_id`),
|
|
UNIQUE KEY `topic` (`topic`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Themen';
|
|
|
|
|
|
--
|
|
-- Table structure for table `user`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `user`;
|
|
CREATE TABLE `user` (
|
|
`user_id` varchar(10) collate latin1_general_ci NOT NULL default '0',
|
|
`CN_name` varchar(100) collate latin1_general_ci NOT NULL default '',
|
|
`lang` char(2) collate latin1_general_ci NOT NULL default '',
|
|
`admin` enum('1','0') collate latin1_general_ci NOT NULL default '1',
|
|
`email` varchar(100) collate latin1_general_ci NOT NULL default '',
|
|
`sendCert` set('no','email','post') collate latin1_general_ci NOT NULL default 'no',
|
|
`root` set('CA Cert Signing Authority','CAcert Class 3 Root') collate latin1_general_ci NOT NULL default '',
|
|
PRIMARY KEY (`user_id`,`root`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
|
|
--
|
|
-- Table structure for table `user_address`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `user_address`;
|
|
CREATE TABLE `user_address` (
|
|
`user_id` varchar(10) collate latin1_general_ci NOT NULL default '0',
|
|
`root` set('CA Cert Signing Authority','CAcert Class 3 Root') collate latin1_general_ci NOT NULL default '',
|
|
`firstname` varchar(25) collate latin1_general_ci NOT NULL default '',
|
|
`lastname` varchar(25) collate latin1_general_ci NOT NULL default '',
|
|
`street` varchar(50) collate latin1_general_ci NOT NULL default '',
|
|
`housenumber` varchar(5) collate latin1_general_ci NOT NULL default '',
|
|
`zipcode` varchar(10) collate latin1_general_ci NOT NULL default '',
|
|
`city` varchar(30) collate latin1_general_ci NOT NULL default '',
|
|
`state` varchar(50) collate latin1_general_ci NOT NULL default '',
|
|
`country` varchar(50) collate latin1_general_ci NOT NULL default '',
|
|
PRIMARY KEY (`user_id`,`root`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
--
|
|
-- Table structure for table `questiontype_v2`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `questiontype_v2`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `questiontype_v2` (
|
|
`qt_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Fragetypenschlssel',
|
|
`lang` varchar(5) COLLATE latin1_general_ci NOT NULL DEFAULT '' COMMENT 'Sprache',
|
|
`qt_desc` varchar(25) COLLATE latin1_general_ci NOT NULL DEFAULT '' COMMENT 'Fragetyp',
|
|
PRIMARY KEY (`qt_id`,`lang`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Fragetypen';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `questiontype_v2`
|
|
--
|
|
|
|
LOCK TABLES `questiontype_v2` WRITE;
|
|
/*!40000 ALTER TABLE `questiontype_v2` DISABLE KEYS */;
|
|
INSERT INTO `questiontype_v2` VALUES (1,'DE','Einfachauswahl'),(2,'DE','Mehrfachauswahl'),(3,'DE','Richtig / Falsch'),(4,'DE','Lückentext'),(1,'EN','single selection'),(2,'EN','multiple choice'),(3,'EN','true / false'),(4,'EN','fill in the blanks'),(1,'FR','single selection'),(2,'FR','multiple choice'),(3,'FR','true / false'),(4,'FR','fill in the blanks'),(1,'ES','single selection'),(2,'ES','multiple choice'),(3,'ES','true / false'),(4,'ES','fill in the blanks');
|
|
/*!40000 ALTER TABLE `questiontype_v2` 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 2013-03-13 22:24:08
|