Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.37 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `items` (
  2.   `id` int(11) NOT NULL auto_increment,
  3.   `item_id` int(11) NOT NULL,
  4.   `item_name` varchar(75) NOT NULL,
  5.   `item_flags` varchar(10) NOT NULL,
  6.   `item_stack` int(10) NOT NULL,
  7.   `item_desc` text NOT NULL,
  8.   `item_cost` int(11) NOT NULL,
  9.   `item_catid` int(11) NOT NULL,
  10.   PRIMARY KEY  (`id`)
  11. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement