Packages

A PostgreSQL database scanner that discovers structure, maps types, and detects enums.

Current section

Files

Jump to
ecto_db_scanner lib ecto_db_scanner result table.ex
Raw

lib/ecto_db_scanner/result/table.ex

defmodule EctoDBScanner.Result.Table do
defstruct [:name, :type, columns: []]
@type t :: %__MODULE__{
name: String.t(),
type: :table | :view | :materialized_view,
columns: [EctoDBScanner.Result.Column.t()]
}
end