1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-11-11 07:59:05 +01:00
pleroma/priv/repo/migrations/20200603120448_remove_unread_from_chats.exs

10 lines
186 B
Elixir
Raw Normal View History

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