landsandboat/sql/char_stats.sql

49 lines
1.6 KiB
SQL

-- phpMyAdmin SQL Dump
-- version 3.3.8
-- http://www.phpmyadmin.net
--
-- Serveur: localhost
-- Généré le : Dim 21 Octobre 2012 à 17:24
-- Version du serveur: 6.0.0
-- Version de PHP: 5.2.9-2
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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: `tpzdb`
--
-- --------------------------------------------------------
--
-- Structure de la table `char_stats`
--
DROP TABLE IF EXISTS `char_stats`;
CREATE TABLE IF NOT EXISTS `char_stats` (
`charid` int(10) unsigned NOT NULL,
`hp` smallint(4) unsigned NOT NULL DEFAULT '50',
`mp` smallint(4) unsigned NOT NULL DEFAULT '50',
`nameflags` int(10) unsigned NOT NULL DEFAULT '0',
`mhflag` tinyint(3) unsigned NOT NULL DEFAULT '0',
`mjob` tinyint(2) unsigned NOT NULL DEFAULT '0',
`sjob` tinyint(2) unsigned NOT NULL DEFAULT '0',
`death` int(10) unsigned NOT NULL DEFAULT '0',
`2h` int(10) unsigned NOT NULL DEFAULT '0',
`title` smallint(4) unsigned NOT NULL DEFAULT '0',
`bazaar_message` BLOB,
`zoning` tinyint(1) unsigned NOT NULL DEFAULT '0',
`mlvl` tinyint(2) unsigned NOT NULL DEFAULT '1',
`slvl` tinyint(2) unsigned NOT NULL DEFAULT '1',
`pet_id` smallint(3) unsigned NOT NULL DEFAULT '0',
`pet_type` smallint(3) unsigned NOT NULL DEFAULT '0',
`pet_hp` smallint(4) unsigned NOT NULL DEFAULT '0',
`pet_mp` smallint(4) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`charid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;