add a setting to mark entries of a feed as read after a number of days (#2041)

This commit is contained in:
Athou
2026-02-20 10:45:17 +01:00
parent f87d3359c2
commit 3fd5cfdecd
39 changed files with 507 additions and 1 deletions

View File

@@ -32,5 +32,15 @@
</addColumn>
</changeSet>
</databaseChangeLog>
<changeSet id="add-auto-mark-as-read-after-days" author="athou">
<addColumn tableName="FEEDSUBSCRIPTIONS">
<column name="auto_mark_as_read_after_days" type="INT">
<constraints nullable="true" />
</column>
</addColumn>
<createIndex indexName="feedsubscriptions_automark_index" tableName="FEEDSUBSCRIPTIONS">
<column name="auto_mark_as_read_after_days" />
</createIndex>
</changeSet>
</databaseChangeLog>