forked from AkkomaGang/akkoma
Apply suggestion to lib/pleroma/notification.ex
This commit is contained in:
parent
3b5282bef2
commit
fc04a138d4
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ defmodule Pleroma.Notification do
|
||||||
schema "notifications" do
|
schema "notifications" do
|
||||||
field(:seen, :boolean, default: false)
|
field(:seen, :boolean, default: false)
|
||||||
# This is an enum type in the database. If you add a new notification type,
|
# 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.
|
# as well.
|
||||||
field(:type, :string)
|
field(:type, :string)
|
||||||
belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
|
belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
|
||||||
|
|
Loading…
Reference in a new issue