10 lines
186 B
Elixir
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
|