mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-31 11:59:10 +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
|