X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=create_database.sql;h=0ac02f0275f8ec101cc455e590f7f6496bfac2e3;hp=e863f538bfc051d546bdcab2cac403c703e758bd;hb=0049ad8507bb304c0f755dd156fd5f3082b1d6b5;hpb=fc2fadb0033767d7e75ff501af60b6120f982f77 diff --git a/create_database.sql b/create_database.sql index e863f53..0ac02f0 100644 --- a/create_database.sql +++ b/create_database.sql @@ -62,6 +62,30 @@ LOCK TABLES `Comment` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `Comment` ENABLE KEYS */; +-- +-- Table structure for table `Notes` +-- + +DROP TABLE IF EXISTS `Notes`; +CREATE TABLE `Notes` ( + `mod_date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, + `create_date` timestamp NOT NULL default '0000-00-00 00:00:00', + `id` int(11) NOT NULL auto_increment, + `user_id` int(11) default NULL, + `game_id` int(11) default NULL, + `comment` text, + UNIQUE KEY `id` (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `Notes` +-- + +/*!40000 ALTER TABLE `Notes` DISABLE KEYS */; +LOCK TABLES `Notes` WRITE; +UNLOCK TABLES; +/*!40000 ALTER TABLE `Notes` ENABLE KEYS */; + -- -- Table structure for table `Game` -- @@ -214,7 +238,7 @@ CREATE TABLE `Score` ( `party` enum('re','contra') default NULL , `winner_id` int(11) default NULL , `looser_id` int(11) default NULL , - `score` enum('120', 'call120','against120','90','call90','against90','made90' + `score` enum('120', 'call120','against120','90','call90','against90','made90', '60','call60','against60','made60','30','call30','against30','made30', '0','call0','against0','made0', 'fox','karlchen','dulle','doko','againstqueens') default NULL,