github.com/status-im/status-go@v1.1.0/protocol/migrations/sqlite/1622010048_add_unviewed_mentions_count.up.sql (about)

     1  ALTER TABLE chats ADD COLUMN unviewed_mentions_count INT DEFAULT 0;
     2  UPDATE chats SET unviewed_mentions_count = 0;