summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200602125218_backfill_notification_types.exs
blob: 996d721ee6810f15a57e8ddd414c652b08537957 (plain)
1
2
3
4
5
6
7
8
9
10
defmodule Pleroma.Repo.Migrations.BackfillNotificationTypes do
  use Ecto.Migration

  def up do
    Pleroma.MigrationHelper.NotificationBackfill.fill_in_notification_types()
  end

  def down do
  end
end