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