feat(novel-front): 增加评论用户地理位置显示功能

This commit is contained in:
xiongxiaoyang
2025-06-30 20:51:29 +08:00
parent efb136e3be
commit 4693c7ffae
16 changed files with 222 additions and 12 deletions

3
doc/sql/20250630.sql Normal file
View File

@ -0,0 +1,3 @@
alter table book_comment add column location varchar(50) DEFAULT NULL COMMENT '地理位置' after comment_content ;

View File

@ -3153,4 +3153,9 @@ where menu_id = 104;
delete
from sys_menu
where menu_id = 57;
where menu_id = 57;
alter table book_comment add column location varchar(50) DEFAULT NULL COMMENT '地理位置' after comment_content ;