feat(数据库): 添加操作日志表结构

新增操作日志表用于记录系统功能操作,包含功能ID、操作类型和时间字段
This commit is contained in:
2025-06-16 15:37:33 +08:00
parent f525f30aae
commit 9b141ddd07
2 changed files with 5 additions and 0 deletions
BIN
View File
Binary file not shown.
+5
View File
@@ -0,0 +1,5 @@
CREATE TABLE operation_logs (
feature_id VARCHAR(512),
action VARCHAR(512),
operation_time datetime
);