feat: add signed PostgreSQL release updates

This commit is contained in:
Qiufeng
2026-08-03 23:45:32 +08:00
parent 2524a37a07
commit f6e22cb670
99 changed files with 44671 additions and 284 deletions
@@ -5,7 +5,6 @@ import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Lob;
import jakarta.persistence.Table;
/** 享空间动态(文化建设 - 分享流)。tags 为逗号分隔。 */
@@ -24,7 +23,6 @@ public class Feed {
/** 动态 / 分享 / 图片 / 打卡 */
private String type;
@Lob
@Column(columnDefinition = "TEXT")
private String content;
@@ -37,7 +35,6 @@ public class Feed {
private int comments;
/** 评论正文列表 [{author,content,createdAt}] 的 JSON。 */
@Lob
@Column(columnDefinition = "TEXT")
private String commentsJson;