Apply suggestion to lib/pleroma/notification.ex

This commit is contained in:
lain 2020-06-08 20:01:37 +00:00
parent 3b5282bef2
commit fc04a138d4
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ defmodule Pleroma.Notification do
schema "notifications" do
field(:seen, :boolean, default: false)
# This is an enum type in the database. If you add a new notification type,
# remembert to add a migration to add it to the `notifications_type` enum
# remember to add a migration to add it to the `notifications_type` enum
# as well.
field(:type, :string)
belongs_to(:user, User, type: FlakeId.Ecto.CompatType)