diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2013-11-02 12:01:31 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2013-11-02 12:01:31 -0700 |
commit | db41eb8a6ea88b854bf5cd11070ea4245e1639c5 (patch) | |
tree | 7ce7308e9b1a46bb61ece82f43af1338eb64d501 /activerecord/test/models | |
parent | deaf285824fa7d2aaf24619eefdb0893c0069bc0 (diff) | |
download | rails-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/test/models')
-rw-r--r-- | activerecord/test/models/book.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/activerecord/test/models/book.rb b/activerecord/test/models/book.rb index 5458a28cc9..997c088176 100644 --- a/activerecord/test/models/book.rb +++ b/activerecord/test/models/book.rb @@ -2,8 +2,10 @@ class Book < ActiveRecord::Base has_many :authors has_many :citations, :foreign_key => 'book1_id' - has_many :references, -> { distinct }, :through => :citations, :source => :reference_of + has_many :references, -> { distinct }, through: :citations, source: :reference_of has_many :subscriptions - has_many :subscribers, :through => :subscriptions + has_many :subscribers, through: :subscriptions + + enum status: %i( proposed written published ) end |