fix for compiling

This commit is contained in:
Alexander Strizhakov 2019-12-30 12:35:41 +03:00
parent 290f6aecef
commit 28ba1d6ffb
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 5 additions and 3 deletions

View File

@ -5,6 +5,9 @@
defmodule Pleroma.Object do
use Ecto.Schema
import Ecto.Query
import Ecto.Changeset
alias Pleroma.Activity
alias Pleroma.Object
alias Pleroma.Object.Fetcher
@ -12,11 +15,10 @@ defmodule Pleroma.Object do
alias Pleroma.Repo
alias Pleroma.User
import Ecto.Query
import Ecto.Changeset
require Logger
@type t :: %__MODULE__{}
schema "objects" do
field(:data, :map)