sloanelybutsurely.com/lib/schema/mastodon_account.ex
2025-04-29 12:55:14 -04:00

12 lines
216 B
Elixir

defmodule Schema.MastodonAccount do
use Schema
schema "mastodon_accounts" do
field :uid, :string
field :access_token, :string, redact: true
belongs_to :user, Schema.User
timestamps()
end
end