summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200602094828_add_type_to_notifications.exs
blob: 19c733628f3ded58d931f12228f8f8984ea70638 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddTypeToNotifications do
  use Ecto.Migration

  def change do
    alter table(:notifications) do
      add(:type, :string)
    end
  end
end