aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_migrations.md
diff options
context:
space:
mode:
authorKonstantinos Rousis <rousisk@gmail.com>2015-04-01 16:03:41 +0200
committerKonstantinos Rousis <rousisk@gmail.com>2015-04-01 16:03:41 +0200
commit8f092302aaf065390ccf05429507b43fd5eadcb3 (patch)
tree0d188fb00d25ba8bea81cc3864db5e56757ba3cd /guides/source/active_record_migrations.md
parent69881fb03be8be5fa1cb56bb7a591006ec2becc3 (diff)
downloadrails-8f092302aaf065390ccf05429507b43fd5eadcb3.tar.gz
rails-8f092302aaf065390ccf05429507b43fd5eadcb3.tar.bz2
rails-8f092302aaf065390ccf05429507b43fd5eadcb3.zip
[ci skip] fix guides example on arbitrary SQL execution
Diffstat (limited to 'guides/source/active_record_migrations.md')
-rw-r--r--guides/source/active_record_migrations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md
index de8bbc4174..7a994cc5de 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -501,7 +501,7 @@ If the helpers provided by Active Record aren't enough you can use the `execute`
method to execute arbitrary SQL:
```ruby
-Product.connection.execute('UPDATE `products` SET `price`=`free` WHERE 1')
+Product.connection.execute("UPDATE products SET price = 'free' WHERE 1=1")
```
For more details and examples of individual methods, check the API documentation.