View Source Confeature.Schema (Confeature v0.1.2)

Defines an internal Ecto schema and changeset used to store Features.

Summary

Types

@type t() :: %Confeature.Schema{
  __meta__: term(),
  attrs: map(),
  inserted_at: NaiveDateTime.t(),
  name: binary(),
  updated_at: NaiveDateTime.t()
}

Functions

Link to this function

changeset(feature, params \\ %{})

View Source