Advertisement
Guest User

php error

a guest
Sep 18th, 2010
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.04 KB | None | 0 0
  1. /*
  2. Navicat MySQL Data Transfer
  3.  
  4. Source Server         : Home
  5. Source Server Version : 50051
  6. Source Host           : localhost:3306
  7. Source Database       : world
  8.  
  9. Target Server Type    : MYSQL
  10. Target Server Version : 50051
  11. File Encoding         : 65001
  12.  
  13. Date: 2010-09-18 15:01:47
  14. */
  15.  
  16. SET FOREIGN_KEY_CHECKS=0;
  17. -- ----------------------------
  18. -- Table structure for `playercreateinfo`
  19. -- ----------------------------
  20. DROP TABLE IF EXISTS `playercreateinfo`;
  21. CREATE TABLE `playercreateinfo` (
  22.   `race` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  23.   `class` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  24.   `map` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0',
  25.   `zone` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
  26.   `position_x` FLOAT NOT NULL DEFAULT '0',
  27.   `position_y` FLOAT NOT NULL DEFAULT '0',
  28.   `position_z` FLOAT NOT NULL DEFAULT '0',
  29.   `orientation` FLOAT NOT NULL DEFAULT '0',
  30.   PRIMARY KEY  (`race`,`class`)
  31. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  32.  
  33. -- ----------------------------
  34. -- Records of playercreateinfo
  35. -- ----------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement