1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-25 23:19:17 +00:00
akkoma/lib/pleroma/object.ex

10 lines
119 B
Elixir
Raw Normal View History

2017-03-21 09:21:52 +01:00
defmodule Pleroma.Object do
use Ecto.Schema
schema "objects" do
field :data, :map
timestamps()
end
end