summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200602125218_backfill_notification_types.exs
blob: 4b03ca12e2bbd873eff716b32e748d2874d395b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

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