defmodule Schema.Status do
  @moduledoc false
  use Ecto.Schema

  @primary_key {:id, :binary_id, autogenerate: true}
  schema "statuses" do
    field :body

    timestamps()
  end
end