1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-18 12:34:42 +00:00
akkoma/priv/repo/migrations/20200603120448_remove_unread_from_chats.exs

10 lines
186 B
Elixir

defmodule Pleroma.Repo.Migrations.RemoveUnreadFromChats do
use Ecto.Migration
def change do
alter table(:chats) do
remove(:unread, :integer, default: 0)
end
end
end