Initial commit.

This commit is contained in:
郑佩茹
2022-03-11 14:36:23 -07:00
commit 13cb5945f0
16 changed files with 615 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS `custom_reagent_bank` (
`character_id` int(11) NOT NULL,
`item_entry` int(11) NOT NULL,
`item_subclass` int(11) NOT NULL,
`amount` int(11) NOT NULL,
PRIMARY KEY (`character_id`,`item_entry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;