Initial commit
This commit is contained in:
commit
998d011cd3
233 changed files with 36893 additions and 0 deletions
100
db/fic2014.sql
Normal file
100
db/fic2014.sql
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
-- phpMyAdmin SQL Dump
|
||||
-- version 3.5.1
|
||||
-- http://www.phpmyadmin.net
|
||||
--
|
||||
-- Host: localhost
|
||||
-- Generation Time: Oct 09, 2013 at 03:38 PM
|
||||
-- Server version: 5.5.32-log
|
||||
-- PHP Version: 5.4.9--pl0-gentoo
|
||||
|
||||
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
--
|
||||
-- Database: `fic2014`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `exercices`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `exercices` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`id_theme` int(10) unsigned NOT NULL,
|
||||
`name` varchar(255) COLLATE utf16_unicode_ci NOT NULL,
|
||||
`difficulty` tinyint(3) unsigned NOT NULL,
|
||||
`points` smallint(6) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf16 COLLATE=utf16_unicode_ci AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `exercice_dependancies`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `exercice_dependancies` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`id_exercice` int(10) unsigned NOT NULL,
|
||||
`id_dependence` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `sessions`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `sessions` (
|
||||
`session` binary(32) NOT NULL,
|
||||
`uid` binary(16) NOT NULL,
|
||||
`time` int(11) NOT NULL,
|
||||
`ip` varbinary(16) NOT NULL,
|
||||
`var` varchar(9999) COLLATE utf8_unicode_ci NOT NULL,
|
||||
`level` tinyint(2) NOT NULL,
|
||||
`active` enum('1','0') COLLATE utf8_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`session`)
|
||||
) ENGINE=MEMORY DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `solved`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `solved` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`id_user` int(10) unsigned NOT NULL,
|
||||
`id_exercice` int(10) unsigned NOT NULL,
|
||||
`time` datetime NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf16 COLLATE=utf16_unicode_ci AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `themes`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `themes` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(255) COLLATE utf16_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf16 COLLATE=utf16_unicode_ci AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `users`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `users` (
|
||||
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`username` varchar(255) COLLATE utf16_unicode_ci NOT NULL,
|
||||
`password` binary(64) NOT NULL,
|
||||
`auth_level` tinyint(1) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf16 COLLATE=utf16_unicode_ci AUTO_INCREMENT=1 ;
|
||||
Reference in a new issue