Adaptation of World Exchange for main version.

This commit is contained in:
MobiusDevelopment
2022-10-28 04:17:45 +00:00
parent 63ba79e6d8
commit 34622f362f
31 changed files with 2390 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
DROP TABLE IF EXISTS `world_exchange_items`;
CREATE TABLE `world_exchange_items` (
`world_exchange_id` INT NOT NULL DEFAULT 0,
`item_object_id` INT NOT NULL DEFAULT 0,
`item_status` smallint(6) NOT NULL,
`category_id` smallint(6) NOT NULL,
`price` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`old_owner_id` INT NOT NULL DEFAULT 0,
`start_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`end_time` bigint(13) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`world_exchange_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;