-- phpMyAdmin SQL Dump -- version 3.4.5 -- http://www.phpmyadmin.net -- -- Client: localhost -- Généré le : Mar 30 Avril 2013 à 16:15 -- Version du serveur: 5.5.16 -- Version de PHP: 5.3.8 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Base de données: `hypoc` -- -- -------------------------------------------------------- -- -- Structure de la table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `userId` int(11) NOT NULL AUTO_INCREMENT, `userNom` text NOT NULL, `userAge` int(11) NOT NULL, `userProfil` text NOT NULL, `userDepartement` int(11) NOT NULL, `userGenre` text NOT NULL, `userLastQuestion` int(11) NOT NULL DEFAULT '0', `userPointsMedia` int(11) NOT NULL DEFAULT '0', `userPoints1` int(11) NOT NULL DEFAULT '0', `userPoints2` int(11) NOT NULL DEFAULT '0', `userPoints3` int(11) NOT NULL DEFAULT '0', `userPoints4` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Contenu de la table `users` -- INSERT INTO `users` (`userId`, `userNom`, `userAge`, `userProfil`, `userDepartement`, `userGenre`, `userLastQuestion`, `userPointsMedia`, `userPoints1`, `userPoints2`, `userPoints3`, `userPoints4`) VALUES (1, 'nomTest', 38, '', 33, 'male', 0, 0, 60, 41, 23, 20); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;