diff options
author | Jon Moss <me@jonathanmoss.me> | 2017-08-06 22:54:23 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2017-08-06 22:54:23 -0400 |
commit | df94b863c2ff8f1bcf12e36ed8fc1419292668e7 (patch) | |
tree | 9ec94c921b7dd7c5cacaf3451b54311b33b491c1 /guides/source | |
parent | 43a42542e6316ceb3124abd225ec7f61a635103b (diff) | |
download | rails-df94b863c2ff8f1bcf12e36ed8fc1419292668e7.tar.gz rails-df94b863c2ff8f1bcf12e36ed8fc1419292668e7.tar.bz2 rails-df94b863c2ff8f1bcf12e36ed8fc1419292668e7.zip |
Capitalize Rake
Should _probably_ be done across the board with all of our
documentation, but going to leave that for another time :)
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index d16b7c8d83..f6b7b3b5a7 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -383,7 +383,7 @@ indicates whether boolean values are stored in sqlite3 databases as 1 and 0 or set to false is deprecated. SQLite databases have used 't' and 'f' to serialize boolean values and must have old data converted to 1 and 0 (its native boolean serialization) before setting this flag to true. Conversion can be accomplished -by setting up a rake task which runs +by setting up a Rake task which runs ```ruby ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1) |