sloanelybutsurely.com/lib/schema/status.ex

11 lines
185 B
Elixir

defmodule Schema.Status do
@moduledoc false
use Ecto.Schema
@primary_key {:id, :binary_id, autogenerate: true}
schema "statuses" do
field :body
timestamps()
end
end