akkoma/priv/repo/migrations/20200602094828_add_type_to_...

10 lines
177 B
Elixir

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