sloanelybutsurely.com/lib/schema/bluesky_post.ex

13 lines
209 B
Elixir

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