mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2025-01-11 18:10:16 +00:00
10 lines
119 B
Elixir
10 lines
119 B
Elixir
defmodule Pleroma.Object do
|
|
use Ecto.Schema
|
|
|
|
schema "objects" do
|
|
field :data, :map
|
|
|
|
timestamps()
|
|
end
|
|
end
|