diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-09-07 13:13:13 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-09-07 13:13:13 -0700 |
commit | c8a2dd3caca94ce41f37442512b90343dcbc6161 (patch) | |
tree | e35f63ee3d0a473137da60078912db6d586fc786 | |
parent | 2524cf404ce943eca8a5f2d173188fd0cf2ac8b9 (diff) | |
download | rails-c8a2dd3caca94ce41f37442512b90343dcbc6161.tar.gz rails-c8a2dd3caca94ce41f37442512b90343dcbc6161.tar.bz2 rails-c8a2dd3caca94ce41f37442512b90343dcbc6161.zip |
no need to freeze this string
-rw-r--r-- | activerecord/lib/active_record/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 24bfef0a20..21453f5e9a 100644 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -588,7 +588,7 @@ module ActiveRecord #:nodoc: # Defines the column name for use with single table inheritance. Use # <tt>set_inheritance_column</tt> to set a different value. def inheritance_column - @inheritance_column ||= "type".freeze + @inheritance_column ||= "type" end # Lazy-set the sequence name to the connection's default. This method |