源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

8 lines
345 B

-- zhaoyu
CREATE TABLE IF NOT EXISTS `market_reminder_info` (
`role_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT '玩家角色Id',
`reminder_list` varchar(800) NOT NULL DEFAULT '[]' COMMENT '玩家入库提醒列表',
PRIMARY KEY (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='交易市场-玩家入库提醒列表';