diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2017-07-15 20:23:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-15 20:23:15 +0200 |
commit | 9930b97e7d9afc8fd7ec10efe649d5e10b4f9556 (patch) | |
tree | d94d8ee9f90b63a243b060b415b9b11602ae559d /activerecord/lib/active_record/railtie.rb | |
parent | 89182d681013e42c514860b24f197ab84a8662f5 (diff) | |
parent | 90bb874ea15a16d3fa363a6f5b2fe7302c913f7b (diff) | |
download | rails-9930b97e7d9afc8fd7ec10efe649d5e10b4f9556.tar.gz rails-9930b97e7d9afc8fd7ec10efe649d5e10b4f9556.tar.bz2 rails-9930b97e7d9afc8fd7ec10efe649d5e10b4f9556.zip |
Merge pull request #29770 from y-yagi/fix_boolean_column_migration_script
Fix boolean column migration script
Diffstat (limited to 'activerecord/lib/active_record/railtie.rb')
-rw-r--r-- | activerecord/lib/active_record/railtie.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/railtie.rb b/activerecord/lib/active_record/railtie.rb index 962ed880b9..9b19e85b33 100644 --- a/activerecord/lib/active_record/railtie.rb +++ b/activerecord/lib/active_record/railtie.rb @@ -187,7 +187,7 @@ serialization) before setting this flag to true. Conversion can be accomplished by setting up a rake task which runs ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1) - ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 0) + ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0) for all models and all boolean columns, after which the flag must be set to true by adding the following to your application.rb file: |