feat: Added unreadMessages to chats

This commit is contained in:
Davidson Gomes 2024-10-07 13:45:19 -03:00
parent f2bb01a640
commit f5f778ecbe
2 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,9 @@
# 2.1.3 (develop) # 2.2.0 (develop)
### Features
* Fake Call function
* Added unreadMessages to chats
### Fixed ### Fixed

View File

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Chat" ADD COLUMN "unreadMessages" INTEGER NOT NULL DEFAULT 0;