diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 11:31:58 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 11:58:44 -0300 |
commit | a502703c3d2151d4d3b421b29fefdac5ad05df61 (patch) | |
tree | 26d2062847b25b296ca753f71fef38e217e0de26 /activerecord/lib/active_record/connection_adapters | |
parent | 07d3d402341e81ada0214f2cb2be1da69eadfe72 (diff) | |
download | rails-a502703c3d2151d4d3b421b29fefdac5ad05df61.tar.gz rails-a502703c3d2151d4d3b421b29fefdac5ad05df61.tar.bz2 rails-a502703c3d2151d4d3b421b29fefdac5ad05df61.zip |
Change the behavior of boolean columns to be closer to Ruby's semantics.
Before this change we had a small set of "truthy", and all others
are "falsy".
Now, we have a small set of "falsy" values and all others are
"truthy" matching Ruby's semantics.
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/column.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/column.rb b/activerecord/lib/active_record/connection_adapters/column.rb index d7f999c3c6..e74de60a83 100644 --- a/activerecord/lib/active_record/connection_adapters/column.rb +++ b/activerecord/lib/active_record/connection_adapters/column.rb @@ -5,7 +5,6 @@ module ActiveRecord module ConnectionAdapters # An abstract definition of a column in a table. class Column - TRUE_VALUES = [true, 1, '1', 't', 'T', 'true', 'TRUE', 'on', 'ON'].to_set FALSE_VALUES = [false, 0, '0', 'f', 'F', 'false', 'FALSE', 'off', 'OFF'].to_set module Format |