aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2013-11-02 12:01:31 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2013-11-02 12:01:31 -0700
commitdb41eb8a6ea88b854bf5cd11070ea4245e1639c5 (patch)
tree7ce7308e9b1a46bb61ece82f43af1338eb64d501 /activerecord/lib/active_record.rb
parentdeaf285824fa7d2aaf24619eefdb0893c0069bc0 (diff)
downloadrails-db41eb8a6ea88b854bf5cd11070ea4245e1639c5.tar.gz
rails-db41eb8a6ea88b854bf5cd11070ea4245e1639c5.tar.bz2
rails-db41eb8a6ea88b854bf5cd11070ea4245e1639c5.zip
Added ActiveRecord::Base#enum for declaring enum attributes where the values map to integers in the database, but can be queried by name
Diffstat (limited to 'activerecord/lib/active_record.rb')
-rw-r--r--activerecord/lib/active_record.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb
index f19f5ecdf9..7a2c5c8bf2 100644
--- a/activerecord/lib/active_record.rb
+++ b/activerecord/lib/active_record.rb
@@ -37,6 +37,7 @@ module ActiveRecord
autoload :ConnectionHandling
autoload :CounterCache
autoload :DynamicMatchers
+ autoload :Enum
autoload :Explain
autoload :Inheritance
autoload :Integration