use "published" instead of "updated" (#1486)

This commit is contained in:
Athou
2024-07-14 19:39:37 +02:00
parent f0e3ac8fcb
commit 1ce39a419e
5 changed files with 19 additions and 11 deletions

View File

@@ -37,9 +37,17 @@ public class FeedEntry extends AbstractModel {
@Column(length = 2048)
private String url;
/**
* the moment the entry was inserted in the database
*/
@Column
private Instant inserted;
/**
* the moment the entry was published in the feed
*
* TODO rename the field to published
*/
@Column
private Instant updated;