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