feat(DB): release ACDB 7.0.0 (#12811)
* feat(DB): release ACDB 7.0.0 * cleanup * we try sourcery
This commit is contained in:
parent
4cd3b9c203
commit
3daa8e2146
739 changed files with 197091 additions and 167873 deletions
|
|
@ -15,10 +15,10 @@
|
|||
-- Dumpar struktur för tabell acore_characters.item_refund_instance
|
||||
DROP TABLE IF EXISTS `item_refund_instance`;
|
||||
CREATE TABLE IF NOT EXISTS `item_refund_instance` (
|
||||
`item_guid` INT unsigned NOT NULL COMMENT 'Item GUID',
|
||||
`player_guid` INT unsigned NOT NULL COMMENT 'Player GUID',
|
||||
`paidMoney` INT unsigned NOT NULL DEFAULT 0,
|
||||
`paidExtendedCost` SMALLINT unsigned NOT NULL DEFAULT 0,
|
||||
`item_guid` int unsigned NOT NULL COMMENT 'Item GUID',
|
||||
`player_guid` int unsigned NOT NULL COMMENT 'Player GUID',
|
||||
`paidMoney` int unsigned NOT NULL DEFAULT '0',
|
||||
`paidExtendedCost` smallint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`item_guid`,`player_guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item Refund System';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue