add dynamic illegal logs

This commit is contained in:
Hankin 2025-09-04 14:35:49 +08:00
parent 926630ba2e
commit 8fc280a6df

View File

@ -0,0 +1,9 @@
create table `ufutx_dynamic_illegal_logs` (
`id` BIGINT NOT NULL AUTO_INCREMENT ,
`square_id` INTEGER NOT NULL COMMENT "动态id",
`status` INTEGER NOT NULL COMMENT "状态,0:正常,1:文本违规",
`text_content` text DEFAULT NULL COMMENT "文本内容",
`created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '动态违规记录';