mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-18 21:56:04 +01:00
9 lines
186 B
Elixir
9 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
|