Advertisement
Buthers

Project Galaxy EW - PLANETE.SQL

Feb 13th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.18 KB | None | 0 0
  1.  
  2. -- phpMyAdmin SQL Dump
  3. -- version 3.5.2.2
  4. -- http://www.phpmyadmin.net
  5. --
  6. -- Client: localhost
  7. -- Généré le: Dim 12 Février 2017 à 19:31
  8. -- Version du serveur: 10.0.28-MariaDB
  9. -- Version de PHP: 5.2.17
  10.  
  11. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  12. SET time_zone = "+00:00";
  13.  
  14.  
  15. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  16. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  17. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  18. /*!40101 SET NAMES utf8 */;
  19.  
  20. --
  21. -- Base de données: `u218634216_bdd1`
  22. --
  23.  
  24. -- --------------------------------------------------------
  25.  
  26. --
  27. -- Structure de la table `planete`
  28. --
  29. CREATE TABLE IF NOT EXISTS `systemes` (
  30.   `id` int(11) NOT NULL AUTO_INCREMENT,
  31.   `coordonnee_aX` int(10) DEFAULT NULL,
  32.   `coordonnee_bX` int(10) DEFAULT NULL,
  33.   `coordonnee_cX` int(10) DEFAULT NULL,
  34.   `coordonnee_dX` int(10) DEFAULT NULL,
  35.   `coordonnee_aY` int(10) DEFAULT NULL,
  36.   `coordonnee_bY` int(10) DEFAULT NULL,
  37.   `coordonnee_cY` int(10) DEFAULT NULL,
  38.   `coordonnee_dY` int(10) DEFAULT NULL,
  39.   `pseudo_membre` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'aucun',
  40.   PRIMARY KEY (`id`)
  41. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=10001;
  42.  
  43.  
  44. CREATE TABLE IF NOT EXISTS `planete` (
  45.   `id` int(11) NOT NULL AUTO_INCREMENT,
  46.   `nom_planete` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  47.   `coordonnee_x` int(10) DEFAULT NULL,
  48.   `coordonnee_y` int(10) DEFAULT NULL,
  49.   `num_systeme` int(10) DEFAULT NULL,
  50.   `planete_mere` tinyint(10) DEFAULT NULL,
  51.   `avatar_p` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  52.   `id_membre` int(11) DEFAULT NULL,
  53.   `id_population` int(11) NOT NULL,
  54.   `id_mine` int(11) NOT NULL,
  55.   `id_batiment` int(11) NOT NULL,
  56.   `id_defense` int(11) NOT NULL,
  57.   `id_caserne` int(11) NOT NULL,
  58.   `id_image_planete` int(10) NOT NULL,
  59.   `coordonnee` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  60.   `cite_rare` int(11) DEFAULT NULL,
  61.   `planete_occupe` int(11) NOT NULL,
  62.   `pseudo_membre` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'aucun',
  63.   PRIMARY KEY (`id`)
  64. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=10001 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement