Use nullable Boolean for rssExcluded

This commit is contained in:
Tim
2025-08-19 09:17:10 +08:00
parent d3a2acb605
commit e65273daa6
2 changed files with 2 additions and 2 deletions

View File

@@ -68,5 +68,5 @@ public class Post {
private LocalDateTime pinnedAt;
@Column(nullable = true)
private boolean rssExcluded = true;
private Boolean rssExcluded = true;
}