Packages

Endo is a library containing database schema reflection APIs for your applications, as well as implementations of queryable schemas to facilitate custom database reflection via Ecto.

Current section

Files

Jump to
endo lib endo index.ex
Raw

lib/endo/index.ex

defmodule Endo.Index do
@moduledoc "Index metadata for a given table's indexes"
@type t :: %__MODULE__{}
defstruct [:adapter, :name, is_primary: false, is_unique: false, columns: []]
end