diff options
author | Jimmy Petersen <jipe@dtic.dtu.dk> | 2013-11-11 13:35:57 +0100 |
---|---|---|
committer | Jimmy Petersen <jipe@dtic.dtu.dk> | 2013-11-11 13:35:57 +0100 |
commit | f387aa1bdd09866386dcdf829542e27e7c4d626d (patch) | |
tree | dcd9f02b397a9c02987941b888cc1fb1e743a51a /guides/source | |
parent | db56c0fcf5c94fd746a41e2ae278b0bdb6fb1d9d (diff) | |
download | rails-f387aa1bdd09866386dcdf829542e27e7c4d626d.tar.gz rails-f387aa1bdd09866386dcdf829542e27e7c4d626d.tar.bz2 rails-f387aa1bdd09866386dcdf829542e27e7c4d626d.zip |
Fixed typo in migrations guide
Product model name was pluralized in example in migrations guide.
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/migrations.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md index b7283d16cc..71a177bca7 100644 --- a/guides/source/migrations.md +++ b/guides/source/migrations.md @@ -420,7 +420,7 @@ If the helpers provided by Active Record aren't enough you can use the `execute` method to execute arbitrary SQL: ```ruby -Products.connection.execute('UPDATE `products` SET `price`=`free` WHERE 1') +Product.connection.execute('UPDATE `products` SET `price`=`free` WHERE 1') ``` For more details and examples of individual methods, check the API documentation. |