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