support for media thumbnail and description as a backup for missing content (#800)

This commit is contained in:
Athou
2022-01-02 12:45:56 +01:00
parent 2ee9084b91
commit 4fb95799f8
8 changed files with 265 additions and 129 deletions

View File

@@ -43,6 +43,17 @@ public class FeedEntryContent extends AbstractModel {
@Column(length = 255)
private String enclosureType;
@Lob
@Column(length = Integer.MAX_VALUE)
@Type(type = "org.hibernate.type.TextType")
private String mediaDescription;
@Column(length = 2048)
private String mediaThumbnailUrl;
private Integer mediaThumbnailWidth;
private Integer mediaThumbnailHeight;
@Column(length = 4096)
private String categories;