diff options
author | lain <lain@soykaf.club> | 2020-06-09 09:20:55 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-06-09 09:20:55 +0200 |
commit | e1bc37d11852684a5007a9550208944d899800ca (patch) | |
tree | 249898dd6520cb4784fdd1d9b95f691e28f0d632 /priv | |
parent | 3b5282bef29656f081750a0d9b06a42b912520de (diff) | |
download | pleroma-e1bc37d11852684a5007a9550208944d899800ca.tar.gz pleroma-e1bc37d11852684a5007a9550208944d899800ca.zip |
MigrationHelper: Move notification backfilling to own module.
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/20200602125218_backfill_notification_types.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20200602125218_backfill_notification_types.exs b/priv/repo/migrations/20200602125218_backfill_notification_types.exs index 58943fad0..996d721ee 100644 --- a/priv/repo/migrations/20200602125218_backfill_notification_types.exs +++ b/priv/repo/migrations/20200602125218_backfill_notification_types.exs @@ -2,7 +2,7 @@ defmodule Pleroma.Repo.Migrations.BackfillNotificationTypes do use Ecto.Migration def up do - Pleroma.MigrationHelper.fill_in_notification_types() + Pleroma.MigrationHelper.NotificationBackfill.fill_in_notification_types() end def down do |