mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
[10262] Fixed table auction name in characters.sql
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
68693b6e56
commit
84dbc4c698
2 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
|
||||||
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue