feat(chat): add unread message divider

This commit is contained in:
2024-11-25 23:22:31 +00:00
parent 24c457413d
commit 2430b41ce1
4 changed files with 88 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
defmodule Slax.Repo.Migrations.AlterRoomMembershipsAddLastReadId do
use Ecto.Migration
def change do
alter table(:room_memberships) do
add :last_read_id, :integer
end
end
end