aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/scheduled_activity.ex
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2019-09-18 21:54:31 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2019-09-25 17:14:31 +0700
commitb5dfe83433e092a007f85ed9c0ffe5a47dbfcccd (patch)
treef4f9a16e645d635b61d95dfd54fab81f044c2a46 /lib/pleroma/scheduled_activity.ex
parent40c968626dde499969d90f256d5ef6d1b1d5e2b4 (diff)
downloadpleroma-b5dfe83433e092a007f85ed9c0ffe5a47dbfcccd.tar.gz
Replace `Pleroma.FlakeId` with `flake_id` hex package
Diffstat (limited to 'lib/pleroma/scheduled_activity.ex')
-rw-r--r--lib/pleroma/scheduled_activity.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/scheduled_activity.ex b/lib/pleroma/scheduled_activity.ex
index de0e54699..fea2cf3ff 100644
--- a/lib/pleroma/scheduled_activity.ex
+++ b/lib/pleroma/scheduled_activity.ex
@@ -17,7 +17,7 @@ defmodule Pleroma.ScheduledActivity do
@min_offset :timer.minutes(5)
schema "scheduled_activities" do
- belongs_to(:user, User, type: Pleroma.FlakeId)
+ belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
field(:scheduled_at, :naive_datetime)
field(:params, :map)