Merge branch 'bugfix/content_nil_lenght_check' into 'develop'
[akkoma] / lib / pleroma / web / push / subscription.ex
index 1ad405daf8138904282089a98a081700fc9f2b22..bd9d9f3a75e2acc9844da61139cff9abf2f197ce 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.Push.Subscription do
   use Ecto.Schema
   import Ecto.Changeset
@@ -6,7 +10,7 @@ defmodule Pleroma.Web.Push.Subscription do
   alias Pleroma.Web.Push.Subscription
 
   schema "push_subscriptions" do
-    belongs_to(:user, User)
+    belongs_to(:user, User, type: Pleroma.FlakeId)
     belongs_to(:token, Token)
     field(:endpoint, :string)
     field(:key_p256dh, :string)