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

14 line
712 B

  1. -- zhaoyu
  2. ALTER TABLE `market_goods`
  3. ADD COLUMN `sys_buyback_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '系统回购时间戳-0表示系统不回购' AFTER `off_time`;
  4. CREATE TABLE IF NOT EXISTS `market_goods_supply_info` (
  5. `goods_type_id` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '物品类型Id',
  6. `num` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '玩家累积上架物品数量',
  7. `supply_num` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '系统今日累积补给数量',
  8. `time` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '系统最近一次补给时间戳',
  9. PRIMARY KEY (`goods_type_id`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='交易市场-系统补给商品数据';