defmodule Schema.BlueskyPost do
  use Schema

  schema "bluesky_posts" do
    field :cid, :string
    field :uri, :string
    field :commit, :map

    belongs_to :post, Schema.Post

    timestamps()
  end
end