mirror of
https://github.com/CAcertOrg/cats.git
synced 2024-11-08 07:04:03 +00:00
retry...
This commit is contained in:
parent
af3ac2eaac
commit
251b199893
2 changed files with 17 additions and 11 deletions
|
@ -1,8 +1,8 @@
|
||||||
-- MySQL dump 10.11
|
-- MySQL dump 10.11
|
||||||
--
|
--
|
||||||
-- Host: localhost Database: cats_cats
|
-- Host: localhost Database: cats_db
|
||||||
-- ------------------------------------------------------
|
-- ------------------------------------------------------
|
||||||
-- Server version 5.0.45-community
|
-- Server version 5.0.45
|
||||||
|
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||||
|
@ -26,7 +26,7 @@ CREATE TABLE `answers` (
|
||||||
`answer` text collate latin1_general_ci NOT NULL,
|
`answer` text collate latin1_general_ci NOT NULL,
|
||||||
`correct` tinyint(1) NOT NULL default '0',
|
`correct` tinyint(1) NOT NULL default '0',
|
||||||
PRIMARY KEY (`a_id`)
|
PRIMARY KEY (`a_id`)
|
||||||
) ENGINE=MyISAM AUTO_INCREMENT=944 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
) ENGINE=MyISAM AUTO_INCREMENT=1529 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -56,6 +56,7 @@ CREATE TABLE `learnprogress` (
|
||||||
`correct` int(11) NOT NULL default '0' COMMENT 'Richtige Fragen',
|
`correct` int(11) NOT NULL default '0' COMMENT 'Richtige Fragen',
|
||||||
`wrong` int(11) NOT NULL default '0' COMMENT 'Anzahl der falschen Antworten',
|
`wrong` int(11) NOT NULL default '0' COMMENT 'Anzahl der falschen Antworten',
|
||||||
`percentage` decimal(5,0) default NULL,
|
`percentage` decimal(5,0) default NULL,
|
||||||
|
`uploaded` tinyint(1) default NULL,
|
||||||
PRIMARY KEY (`lp_id`)
|
PRIMARY KEY (`lp_id`)
|
||||||
) ENGINE=MyISAM AUTO_INCREMENT=178 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
) ENGINE=MyISAM AUTO_INCREMENT=178 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||||
|
|
||||||
|
@ -83,8 +84,11 @@ CREATE TABLE `questions` (
|
||||||
`question` text collate latin1_general_ci NOT NULL COMMENT 'Frage',
|
`question` text collate latin1_general_ci NOT NULL COMMENT 'Frage',
|
||||||
`active` enum('1','0') collate latin1_general_ci NOT NULL default '0',
|
`active` enum('1','0') collate latin1_general_ci NOT NULL default '0',
|
||||||
`description` 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`)
|
PRIMARY KEY (`q_id`)
|
||||||
) ENGINE=MyISAM AUTO_INCREMENT=158 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Fragen';
|
) ENGINE=MyISAM AUTO_INCREMENT=245 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Fragen';
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `questiontype`
|
-- Table structure for table `questiontype`
|
||||||
|
@ -118,7 +122,7 @@ CREATE TABLE `statistics` (
|
||||||
`q_id` int(11) NOT NULL default '0' COMMENT 'Frage Id',
|
`q_id` int(11) NOT NULL default '0' COMMENT 'Frage Id',
|
||||||
`count` int(11) NOT NULL default '0' COMMENT 'Zählen von Antworten',
|
`count` int(11) NOT NULL default '0' COMMENT 'Zählen von Antworten',
|
||||||
PRIMARY KEY (`stat_id`)
|
PRIMARY KEY (`stat_id`)
|
||||||
) ENGINE=MyISAM AUTO_INCREMENT=121 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -132,9 +136,11 @@ CREATE TABLE `topics` (
|
||||||
`active` tinyint(1) NOT NULL default '0',
|
`active` tinyint(1) NOT NULL default '0',
|
||||||
`numOfQu` tinyint(4) NOT NULL default '0',
|
`numOfQu` tinyint(4) NOT NULL default '0',
|
||||||
`percentage` 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`),
|
PRIMARY KEY (`t_id`),
|
||||||
UNIQUE KEY `topic` (`topic`)
|
UNIQUE KEY `topic` (`topic`)
|
||||||
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Themen';
|
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci COMMENT='Themen';
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `user`
|
-- Table structure for table `user`
|
||||||
|
@ -182,4 +188,4 @@ CREATE TABLE `user_address` (
|
||||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||||
|
|
||||||
-- Dump completed on 2008-01-04 23:53:19
|
-- Dump completed on 2013-03-13 22:24:08
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue