源战役
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
998 B

  1. -- hh
  2. -- 贵族功能
  3. CREATE TABLE `role_sup_vip`(
  4. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '人物id',
  5. `type` tinyint(2) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否是永久vip 0否|1是',
  6. `continue_charge_days` tinyint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT '连续充值天数',
  7. `today_charge` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '今日已充值',
  8. `last_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最近一次充值时间',
  9. `total_charge` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '体验阶段总充值量',
  10. `end_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '体验贵族结束时间',
  11. `unlock_ids` varchar(100) NOT NULL DEFAULT '[]' COMMENT '贵族商城当前解锁序列',
  12. `today_star` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '今日星钻',
  13. `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最近更新时间',
  14. PRIMARY KEY(`role_id`)
  15. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT="人物贵族数据";