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

11 lines
588 B

-- 社团商店
-- zmh
CREATE TABLE `role_guild_shop` (
`rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家id',
`cargos_daily` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '每日商品',
`time_daily` int(11) unsigned DEFAULT '0' COMMENT '上次刷新',
`cargos_week` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '每周商品',
`time_week` int(11) unsigned DEFAULT '0' COMMENT '上次刷新',
`cargos_forever` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '终身商品',
PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='社团商店-合服合并';