mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 14:16:05 +01:00
9 lines
119 B
Elixir
9 lines
119 B
Elixir
defmodule Pleroma.Object do
|
|
use Ecto.Schema
|
|
|
|
schema "objects" do
|
|
field :data, :map
|
|
|
|
timestamps()
|
|
end
|
|
end
|