Guest User

Untitled

a guest
Sep 14th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.82 KB | None | 0 0
  1.     CREATE TABLE IF NOT EXISTS `player_inventory` (
  2.         `id` int(11) NOT NULL AUTO_INCREMENT,
  3.         `item_id` mediumint(7) NOT NULL,
  4.         `pid` int(11) NOT NULL,
  5.         `type` tinyint(3) NOT NULL,
  6.         `on` tinyint(1) NOT NULL DEFAULT '0',
  7.         `amount` mediumint(7) NOT NULL,
  8.         `bone` tinyint(2),
  9.         `offset_x` double NOT NULL DEFAULT '0.0',
  10.         `offset_y` double NOT NULL DEFAULT '0.0',
  11.         `offset_z` double NOT NULL DEFAULT '0.0',
  12.         `rot_x` double NOT NULL DEFAULT '0.0',
  13.         `rot_y` double NOT NULL DEFAULT '0.0',
  14.         `rot_z` double NOT NULL DEFAULT '0.0',
  15.         `materialc1` int(11) NOT NULL,
  16.         `materialc2` int(11) NOT NULL,
  17.         PRIMARY KEY (`id`),
  18.         UNIQUE KEY `id` (`id`),
  19.         KEY `pid` (`pid`),
  20.         KEY `itemid` (`itemid`),
  21.         KEY `type` (`type`)) ENGINE=MyISAM AUTO_INCREMENT=60000 DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment