Allen 2021-12-27 11:38:54 9120 0 0 0 0
TYCMS,站点日志,修改DB,site表中添加新字段:站点限制

site表中添加新字段:site_limit,9-公开,3=私人

在站点侧栏中加入各网站相关链接

--添加新字段

alter table ty_site add site_limit char(1)  default '9'  comment '站点限制';

--更新部分站点

update ty_site set site_limit='3' where site_id in (102,103,104,105,115,117,118,119,120,121);


还有些数据库修正

--增加论坛类型和图标
alter table ty_forum add forum_type int(5) default 1;
alter table ty_forum add forum_icon varchar(100) default null;
--增加今日主贴和回复,并修正列名
alter table ty_forum add stat_main_today int(10) default 0;
alter table ty_forum add stat_reply_today int(10) default 0;
alter table ty_forum add stat_today_main int(10) default 0;
alter table ty_forum add stat_today_reply int(10) default 0;
alter table ty_forum drop column stat_main_today;
alter table ty_forum drop column stat_reply_today;

20220111用户表增加site_id

alter table ty_user add site_id int(5) default 0;


Tag: TYCMS 站点日志
我也要发一个   ·   返回首页   ·   返回[TYCMS]   ·   前一个   ·   下一个
欢迎评论
未登录,
请先 [ 注册 ] or [ 登录 ]
(一分钟即可完成注册!)
返回首页     ·   返回[TYCMS]   ·   返回顶部