Private shop review.

This commit is contained in:
MobiusDevelopment
2022-12-19 07:51:48 +00:00
parent df75af3580
commit 224d1b3757
48 changed files with 3512 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
DROP TABLE IF EXISTS `item_transaction_history`;
CREATE TABLE IF NOT EXISTS `item_transaction_history` (
`created_time` BIGINT UNSIGNED NOT NULL,
`item_id` INT NOT NULL,
`transaction_type` INT NOT NULL,
`enchant_level` INT NOT NULL,
`price` BIGINT UNSIGNED NOT NULL,
`count` BIGINT UNSIGNED NOT NULL,
PRIMARY KEY (`created_time`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;