5 lines
120 B
SQL
5 lines
120 B
SQL
--
|
|
-- Add unread count column to the FolderTable
|
|
--
|
|
|
|
ALTER TABLE FolderTable ADD COLUMN unread_count INTEGER DEFAULT 0;
|