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

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