Change database structure
This commit is contained in:
parent
62c51a3c7b
commit
f7aeeb0c0e
65
install.sql
65
install.sql
|
@ -1,4 +1,9 @@
|
||||||
CREATE TABLE `arena_history` (
|
|
||||||
|
--
|
||||||
|
-- Structure de la table `arena_history`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS `arena_history` (
|
||||||
`game` varchar(8) NOT NULL,
|
`game` varchar(8) NOT NULL,
|
||||||
`player1_id` int(11) NOT NULL,
|
`player1_id` int(11) NOT NULL,
|
||||||
`player2_id` int(11) NOT NULL,
|
`player2_id` int(11) NOT NULL,
|
||||||
|
@ -6,28 +11,54 @@ CREATE TABLE `arena_history` (
|
||||||
`player2_winsCount` int(11) NOT NULL,
|
`player2_winsCount` int(11) NOT NULL,
|
||||||
`nulCount` int(11) NOT NULL,
|
`nulCount` int(11) NOT NULL,
|
||||||
PRIMARY KEY (`game`,`player1_id`,`player2_id`)
|
PRIMARY KEY (`game`,`player1_id`,`player2_id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
);
|
||||||
LOCK TABLES `arena_history` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `arena_history` DISABLE KEYS */;
|
|
||||||
INSERT INTO `arena_history` VALUES ('Battlesh',10,10,173,438,0),('tictacto',1,1,0,0,44),('tictacto',1,2,46,0,2),('tictacto',1,3,23,0,47),('tictacto',2,1,0,20,4),('tictacto',2,3,0,5,0),('tictacto',3,1,0,0,6),('tictacto',3,2,2,0,0),('tictacto',3,3,3,0,0);
|
--
|
||||||
/*!40000 ALTER TABLE `arena_history` ENABLE KEYS */;
|
-- Structure de la table `bots`
|
||||||
UNLOCK TABLES;
|
--
|
||||||
DROP TABLE IF EXISTS `bots`;
|
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
CREATE TABLE IF NOT EXISTS `bots` (
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
|
||||||
CREATE TABLE `bots` (
|
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`name` text NOT NULL,
|
`name` text NOT NULL,
|
||||||
`game` varchar(10) NOT NULL,
|
`game` varchar(10) NOT NULL,
|
||||||
`url` text NOT NULL,
|
`url` text NOT NULL,
|
||||||
`description` text NOT NULL,
|
`description` text NOT NULL,
|
||||||
|
`unclean_description` text NOT NULL,
|
||||||
`active` int(1) NOT NULL,
|
`active` int(1) NOT NULL,
|
||||||
`date_inscription` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
`date_inscription` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
`validate_secret` varchar(8) NOT NULL,
|
`validate_secret` varchar(8) NOT NULL,
|
||||||
|
`author_email` text NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
|
);
|
||||||
LOCK TABLES `bots` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `bots` DISABLE KEYS */;
|
--
|
||||||
INSERT INTO `bots` VALUES (1,'moul','tictactoe','http://tictactoe.m.42.am/','moul\'s Tic Tac Toe resolver in Golang. <a href=\"https://github.com/moul/tictactoe\">Open sourced</a> using Minimax algorithm',1,'2015-12-03 10:55:34',''),(2,'stupidAI','tictactoe','http://morpionmaster.tinad.fr/stupidIa.php','A PHP script that choose next case by... random. <a href=\"https://github.com/jeannedhack/programmingChallenges/blob/master/morpionsFights/Master/stupidIa.php>By Gnieark, here on github</a>',1,'2015-12-03 10:55:34',''),(3,'Gnieark','tictactoe','http://morpionmaster.tinad.fr/gnieark.php','Gnieark\'s PHP AI, using minmax algorythm. <a href=\"https://github.com/gnieark/tictactoeChallenge\">Published on github</a>',1,'2015-12-03 10:55:34',''),(10,'stupidIA','Battleship','https://botsArena.tinad.fr/StupidIABattleship.php','',1,'2015-12-11 11:16:50','!!!');
|
-- Contenu de la table `bots` only stupid ias
|
||||||
/*!40000 ALTER TABLE `bots` ENABLE KEYS */;
|
--
|
||||||
UNLOCK TABLES;
|
|
||||||
|
INSERT INTO `bots` (`id`, `name`, `game`, `url`, `description`, `unclean_description`, `active`, `date_inscription`, `validate_secret`, `author_email`) VALUES
|
||||||
|
(2, 'stupidAI', 'tictactoe', 'https://ias.tinad.fr/stupidIATictactoe.php', '', '', 1, '2015-12-03 10:55:34', '', ''),
|
||||||
|
(3, 'stupidAI', 'Battleship', 'https://botsArena.tinad.fr/StupidIABattleship.php', '', '', 1, '2015-12-11 11:16:50', '', ''),
|
||||||
|
(4, 'stupidAI', 'connectFou', 'https://ias.tinad.fr/StupidIAconnectFour.php', '', '', 1, '2016-05-11 07:47:57', '', '');
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Structure de la table `bots_modifs`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS `bots_modifs` (
|
||||||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`real_id` int(11) NOT NULL,
|
||||||
|
`name` text NOT NULL,
|
||||||
|
`game` varchar(10) NOT NULL,
|
||||||
|
`url` text NOT NULL,
|
||||||
|
`description` text NOT NULL,
|
||||||
|
`unclean_description` text NOT NULL,
|
||||||
|
`date_modification` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
`validate_secret` varchar(8) NOT NULL,
|
||||||
|
`author_email` text NOT NULL,
|
||||||
|
PRIMARY KEY (`id`);
|
||||||
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user