[10262] Fixed table auction name in characters.sql

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Salja 2010-07-24 18:24:09 +04:00 committed by VladimirMangos
parent 68693b6e56
commit 84dbc4c698
2 changed files with 8 additions and 8 deletions

View file

@ -135,11 +135,11 @@ LOCK TABLES `arena_team_stats` WRITE;
UNLOCK TABLES; UNLOCK TABLES;
-- --
-- Table structure for table `auctionhouse` -- Table structure for table `auction`
-- --
DROP TABLE IF EXISTS `auctionhouse`; DROP TABLE IF EXISTS `auction`;
CREATE TABLE `auctionhouse` ( CREATE TABLE `auction` (
`id` int(11) unsigned NOT NULL default '0', `id` int(11) unsigned NOT NULL default '0',
`houseid` int(11) unsigned NOT NULL default '0', `houseid` int(11) unsigned NOT NULL default '0',
`itemguid` int(11) unsigned NOT NULL default '0', `itemguid` int(11) unsigned NOT NULL default '0',
@ -156,12 +156,12 @@ CREATE TABLE `auctionhouse` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --
-- Dumping data for table `auctionhouse` -- Dumping data for table `auction`
-- --
LOCK TABLES `auctionhouse` WRITE; LOCK TABLES `auction` WRITE;
/*!40000 ALTER TABLE `auctionhouse` DISABLE KEYS */; /*!40000 ALTER TABLE `auction` DISABLE KEYS */;
/*!40000 ALTER TABLE `auctionhouse` ENABLE KEYS */; /*!40000 ALTER TABLE `auction` ENABLE KEYS */;
UNLOCK TABLES; UNLOCK TABLES;
-- --

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "10261" #define REVISION_NR "10262"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__