mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 11:19:19 +00: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
|