Skip to content
Snippets Groups Projects
Commit e9f233f6 authored by MELERIX's avatar MELERIX
Browse files

SQL: looks like this column is used for objectId instead of itemId.

parent b85a7585
No related branches found
No related tags found
No related merge requests found
CREATE TABLE IF NOT EXISTS `character_offline_trade_items` ( CREATE TABLE IF NOT EXISTS `character_offline_trade_items` (
`charId` int(10) unsigned NOT NULL DEFAULT '0', `charId` int(10) unsigned NOT NULL DEFAULT '0',
`item` smallint(5) unsigned NOT NULL DEFAULT '0', `item` int(10) unsigned NOT NULL DEFAULT '0', -- ObjectId
`count` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) unsigned NOT NULL DEFAULT '0',
`price` bigint(20) unsigned NOT NULL DEFAULT '0' `price` bigint(20) unsigned NOT NULL DEFAULT '0'
); );
\ No newline at end of file
ALTER TABLE `character_offline_trade_items` ALTER TABLE `character_offline_trade_items`
MODIFY `charId` int(10) unsigned NOT NULL DEFAULT '0', MODIFY `charId` int(10) unsigned NOT NULL DEFAULT '0',
MODIFY `item` smallint(5) unsigned NOT NULL DEFAULT '0', MODIFY `item` int(10) unsigned NOT NULL DEFAULT '0',
MODIFY `count` bigint(20) unsigned NOT NULL DEFAULT '0', MODIFY `count` bigint(20) unsigned NOT NULL DEFAULT '0',
MODIFY `price` bigint(20) unsigned NOT NULL DEFAULT '0', MODIFY `price` bigint(20) unsigned NOT NULL DEFAULT '0',
DROP PRIMARY KEY; DROP PRIMARY KEY;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment