mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-04 23:53:11 +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
|