Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Navicat MySQL Data Transfer
- Source Server : Home
- Source Server Version : 50051
- Source Host : localhost:3306
- Source Database : world
- Target Server Type : MYSQL
- Target Server Version : 50051
- File Encoding : 65001
- Date: 2010-09-18 15:01:47
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `playercreateinfo`
- -- ----------------------------
- DROP TABLE IF EXISTS `playercreateinfo`;
- CREATE TABLE `playercreateinfo` (
- `race` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `class` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
- `map` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
- `zone` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
- `position_x` FLOAT NOT NULL DEFAULT '0',
- `position_y` FLOAT NOT NULL DEFAULT '0',
- `position_z` FLOAT NOT NULL DEFAULT '0',
- `orientation` FLOAT NOT NULL DEFAULT '0',
- PRIMARY KEY (`race`,`class`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of playercreateinfo
- -- ----------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement