Closes #7120 Store and update unseen count in database

This commit is contained in:
Eric Gregory 2013-06-21 18:20:56 -07:00
parent 34236be3d5
commit dc26b19aac
3 changed files with 15 additions and 6 deletions

View file

@ -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
View file

@ -0,0 +1,5 @@
--
-- Add unread count column to the FolderTable
--
ALTER TABLE FolderTable ADD COLUMN unread_count INTEGER DEFAULT 0;