Closes #7120 Store and update unseen count in database
This commit is contained in:
parent
34236be3d5
commit
dc26b19aac
3 changed files with 15 additions and 6 deletions
|
|
@ -9,3 +9,4 @@ install(FILES version-006.sql DESTINATION ${SQL_DEST})
|
|||
install(FILES version-007.sql DESTINATION ${SQL_DEST})
|
||||
install(FILES version-008.sql DESTINATION ${SQL_DEST})
|
||||
install(FILES version-009.sql DESTINATION ${SQL_DEST})
|
||||
install(FILES version-010.sql DESTINATION ${SQL_DEST})
|
||||
|
|
|
|||
5
sql/version-010.sql
Normal file
5
sql/version-010.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
--
|
||||
-- Add unread count column to the FolderTable
|
||||
--
|
||||
|
||||
ALTER TABLE FolderTable ADD COLUMN unread_count INTEGER DEFAULT 0;
|
||||
Loading…
Add table
Add a link
Reference in a new issue