akkoma/priv/repo/migrations/20200602094828_add_type_to_notifications.exs

10 lines
177 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.AddTypeToNotifications do
use Ecto.Migration
def change do
alter table(:notifications) do
add(:type, :string)
end
end
end