Money.Ecto.NumericCurrency.Type (Money v1.11.0) View Source
Provides a type for Ecto to store a currency. The underlying data type is a integer.
Migration
create table(:my_table) do
add :currency, :integer
end
Schema
schema "my_table" do
field :currency, Money.Ecto.NumericCurrency.Type
end
Link to this section Summary
Functions
Callback implementation for Ecto.Type.cast/1
.
Callback implementation for Ecto.Type.dump/1
.
Callback implementation for Ecto.Type.embed_as/1
.
Callback implementation for Ecto.Type.equal?/2
.
Callback implementation for Ecto.Type.load/1
.
Callback implementation for Ecto.Type.type/0
.
Link to this section Functions
Specs
Callback implementation for Ecto.Type.cast/1
.
Specs
Callback implementation for Ecto.Type.dump/1
.
Callback implementation for Ecto.Type.embed_as/1
.
Callback implementation for Ecto.Type.equal?/2
.
Specs
Callback implementation for Ecto.Type.load/1
.
Specs
type() :: :integer
Callback implementation for Ecto.Type.type/0
.