mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 23:50:44 +01:00
Added missing sql data to fulls.
Proper renaming and reformatting for some sql files. Removed not-core-related data. You can find it in the usual place: http://trinitydatabase.org/index.php?/forum/122-core-related-db-content/ --HG-- branch : trunk
This commit is contained in:
@@ -1709,12 +1709,12 @@ UNLOCK TABLES;
|
||||
DROP TABLE IF EXISTS `item_refund_instance`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `item_refund_instance` (
|
||||
`item_guid` int(11) unsigned NOT NULL COMMENT 'Item GUID',
|
||||
`player_guid` int(11) unsigned NOT NULL COMMENT 'Player GUID',
|
||||
`paidMoney` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`paidExtendedCost` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`item_guid`,`player_guid`)
|
||||
CREATE TABLE `item_refund_instance` (
|
||||
`item_guid` int(11) unsigned NOT NULL COMMENT 'Item GUID',
|
||||
`player_guid` int(11) unsigned NOT NULL COMMENT 'Player GUID',
|
||||
`paidMoney` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`paidExtendedCost` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`item_guid`,`player_guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Item Refund System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user