From 90bb874ea15a16d3fa363a6f5b2fe7302c913f7b Mon Sep 17 00:00:00 2001
From: "yuuji.yaginuma" <yuuji.yaginuma@gmail.com>
Date: Thu, 13 Jul 2017 07:36:40 +0900
Subject: Fix boolean column migration script

---
 activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb | 2 +-
 activerecord/lib/active_record/railtie.rb                             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'activerecord/lib')

diff --git a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
index b79dbe0733..5174c98c4b 100644
--- a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
@@ -82,7 +82,7 @@ module ActiveRecord
       # 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:
       #
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:
-- 
cgit v1.2.3