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