11 lines
192 B
Elixir
11 lines
192 B
Elixir
defmodule Schema.MastodonPost do
|
|
use Schema
|
|
|
|
schema "mastodon_posts" do
|
|
field :status_id, :string
|
|
field :url, :string
|
|
|
|
belongs_to :post, Schema.Post
|
|
timestamps()
|
|
end
|
|
end
|