源战役
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

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