Module: MoneyAttribute::MigrationExtensions::Helper

Included in:
SchemaStatements, TableDefinition
Defined in:
lib/money_attribute/migration_extensions/helper.rb

Overview

:nodoc:

Constant Summary collapse

AMOUNT_CONFIG =
{
  crypto_decimal: { type: :decimal, precision: 36, scale: 18 },
  fiat_decimal: { type: :decimal, precision: 20, scale: 4 },
  fiat_integer: { type: :bigint }
}.freeze
CURRENCY_MIN_LIMIT =
8
CURRENCY_DEFAULT_LIMIT =
20