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

6 lines
358 B

  1. -- tyl 全民动员战力
  2. CREATE TABLE `mobilize_power` (
  3. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色id',
  4. `power` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '全民动员任务开启记录的战力',
  5. PRIMARY KEY (`role_id`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='全民动员-记录登录战力';