root/trunk/sql/updates/0.6/2765_auctionHouse.sql @ 2

Revision 2, 0.7 kB (checked in by yumileroy, 17 years ago)

[svn] * Proper SVN structure

Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00

Line 
1DROP TABLE IF EXISTS `auctionhouse`;
2CREATE TABLE `auctionhouse` (
3  `id` bigint(20) unsigned NOT NULL default '0',
4  `auctioneerguid` int(32) NOT NULL default '0',
5  `itemguid` int(32) NOT NULL default '0',
6  `item_template` int(11) unsigned NOT NULL default '0' COMMENT 'Item Identifier',
7  `itemowner` int(32) NOT NULL default '0',
8  `buyoutprice` int(32) NOT NULL default '0',
9  `time` bigint(40) NOT NULL default '0',
10  `buyguid` int(32) NOT NULL default '0',
11  `lastbid` int(32) NOT NULL default '0',
12  `startbid` int(32) NOT NULL default '0',
13  `deposit` int(11) NOT NULL default '0',
14  `location` tinyint(3) unsigned NOT NULL default '3',
15  PRIMARY KEY  (`id`)
16) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17
Note: See TracBrowser for help on using the browser.