Add on exercice page the last try time

This commit is contained in:
nemunaire 2014-01-14 17:09:29 +01:00
commit 6b5e51f4e3
4 changed files with 38 additions and 2 deletions

View file

@ -47,6 +47,20 @@ CREATE TABLE IF NOT EXISTS `exercice_files` (
-- --------------------------------------------------------
--
-- Table structure for table `exercice_tries`
--
CREATE TABLE IF NOT EXISTS `exercice_tries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`id_exercice` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`id_team` smallint(5) unsigned NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `exercice_keys`
--