sloanelybutsurely.com/lib/schema/user_token.ex
2025-03-25 21:54:52 -04:00

13 lines
277 B
Elixir

defmodule Schema.UserToken do
@moduledoc false
use Schema
schema "users_tokens" do
field :token, :binary
field :context, :string
field :sent_to, :string
belongs_to :user, Schema.User
timestamps(type: :utc_datetime_usec, updated_at: false)
end
end