aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attributes/store.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/attributes/store.rb')
-rw-r--r--activerecord/lib/active_record/attributes/store.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/attributes/store.rb b/activerecord/lib/active_record/attributes/store.rb
new file mode 100644
index 0000000000..61109f4acc
--- /dev/null
+++ b/activerecord/lib/active_record/attributes/store.rb
@@ -0,0 +1,15 @@
+module ActiveRecord
+ module Attributes
+ class Store < Hash
+ include ActiveRecord::Attributes::Typecasting
+ include ActiveRecord::Attributes::Aliasing
+
+ # Attributes not mapped to a column are handled using Type::Unknown,
+ # which enables boolean typecasting for unmapped keys.
+ def types
+ @types ||= Hash.new(Type::Unknown.new)
+ end
+
+ end
+ end
+end