Module: ActiveRecord::Type

Defined in:
lib/active_record/type/adapter_specific_registry.rb,
lib/active_record/type.rb,
lib/active_record/type/date.rb,
lib/active_record/type/json.rb,
lib/active_record/type/text.rb,
lib/active_record/type/time.rb,
lib/active_record/type/type_map.rb,
lib/active_record/type/date_time.rb,
lib/active_record/type/serialized.rb,
lib/active_record/type/unsigned_integer.rb,
lib/active_record/type/internal/timezone.rb,
lib/active_record/type/hash_lookup_type_map.rb,
lib/active_record/type/decimal_without_scale.rb

Overview

:stopdoc:

Defined Under Namespace

Modules: Internal Classes: AdapterSpecificRegistry, Date, DateTime, DecimalWithoutScale, DecorationRegistration, HashLookupTypeMap, Json, Registration, Serialized, Text, Time, TypeMap, UnsignedInteger

Constant Summary collapse

Helpers =
ActiveModel::Type::Helpers
BigInteger =
ActiveModel::Type::BigInteger
Binary =
ActiveModel::Type::Binary
Boolean =
ActiveModel::Type::Boolean
Decimal =
ActiveModel::Type::Decimal
Float =
ActiveModel::Type::Float
Integer =
ActiveModel::Type::Integer
String =
ActiveModel::Type::String
Value =
ActiveModel::Type::Value

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.registryObject

:nodoc:



26
27
28
# File 'lib/active_record/type.rb', line 26

def registry
  @registry
end

Class Method Details

.default_valueObject

:nodoc:



45
46
47
# File 'lib/active_record/type.rb', line 45

def default_value # :nodoc:
  @default_value ||= Value.new
end

.lookup(*args, adapter: current_adapter_name, **kwargs) ⇒ Object

:nodoc:



41
42
43
# File 'lib/active_record/type.rb', line 41

def lookup(*args, adapter: current_adapter_name, **kwargs) # :nodoc:
  registry.lookup(*args, adapter: adapter, **kwargs)
end

.register(type_name, klass = nil, **options, &block) ⇒ Object

Add a new type to the registry, allowing it to be referenced as a symbol by ActiveRecord::Base.attribute. If your type is only meant to be used with a specific database adapter, you can do so by passing adapter: :postgresql. If your type has the same name as a native type for the current adapter, an exception will be raised unless you specify an :override option. override: true will cause your type to be used instead of the native type. override: false will cause the native type to be used over yours if one exists.



37
38
39
# File 'lib/active_record/type.rb', line 37

def register(type_name, klass = nil, **options, &block)
  registry.register(type_name, klass, **options, &block)
end