Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1.-- phpMyAdmin SQL Dump
- 2.-- version 4.5.1
- 3.-- http://www.phpmyadmin.net
- 4.--
- 5.-- Client : localhost:3306
- 6.-- Généré le : Ven 22 Janvier 2016 à 22:37
- 7.-- Version du serveur : 5.1.73-1
- 8.-- Version de PHP : 5.6.14
- 9.
- 10.SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- 11.SET time_zone = "+00:00";
- 12.
- 13.
- 14./*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- 15./*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- 16./*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- 17./*!40101 SET NAMES utf8 */;
- 18.
- 19.--
- 20.-- Base de données : `NA-965369-CFD_`
- 21.--
- 22.
- 23.-- --------------------------------------------------------
- 24.
- 25.--
- 26.-- Structure de la table `joueurs`
- 27.--
- 28.
- 29.CREATE TABLE `joueurs` (
- 30. `user_id` int(11) NOT NULL,
- 31. `user_pseudo` varchar(32) NOT NULL,
- 32. `user_mdp` varchar(40) NOT NULL,
- 33. `user_mail` varchar(100) NOT NULL,
- 34. `user_level` tinyint(1) NOT NULL DEFAULT '0',
- 35. `user_points` int(255) NOT NULL DEFAULT '0',
- 36. `user_skin` tinyint(1) NOT NULL DEFAULT '0',
- 37. `user_cloak` tinyint(1) NOT NULL DEFAULT '0',
- 38. `user_inscription` int(255) NOT NULL,
- 39. `user_derniere_visite` int(255) NOT NULL,
- 40. `sessionId` varchar(255) NOT NULL,
- 41. `user_banni` int(1) NOT NULL DEFAULT '0',
- 42. `vote` int(11) NOT NULL,
- 43. `date_vote` text NOT NULL,
- 44. `friends` text,
- 45. `reponse` varchar(100) DEFAULT NULL,
- 46. `recompenses` int(7) NOT NULL DEFAULT '0'
- 47.) ENGINE=MyISAM DEFAULT CHARSET=utf8;
- 48.
- 49.--
- 50.-- Contenu de la table `joueurs`
- 51.--
- 52.
- 53.INSERT INTO `joueurs` (`user_id`, `user_pseudo`, `user_mdp`, `user_mail`, `user_level`, `user_points`, `user_skin`, `user_cloak`, `user_inscription`, `user_derniere_visite`, `sessionId`, `user_banni`, `vote`, `date_vote`, `friends`, `reponse`, `recompenses`) VALUES
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement