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

7 lines
447 B

  1. -- tyl 精英考核累计登录
  2. CREATE TABLE `elite_assess_login_days` (
  3. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
  4. `login_day` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '累计登录天数',
  5. `last_refresh_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '上次刷新时间',
  6. PRIMARY KEY (`role_id`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='精英考核-累计登录天数';