aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/migrations.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-05-19 21:40:12 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2013-05-19 21:40:12 +0530
commitd71b0935a956ebedea0bb975525fc0f5672e4088 (patch)
treeea512e13fd13dd144bdbf3469514beb8fba010c6 /guides/source/migrations.md
parentd3d8cfd5689188f48714f49ad000a1c1fbd9edcd (diff)
parent7f24d3d6956a7775771302d143e3b09de681d12f (diff)
downloadrails-d71b0935a956ebedea0bb975525fc0f5672e4088.tar.gz
rails-d71b0935a956ebedea0bb975525fc0f5672e4088.tar.bz2
rails-d71b0935a956ebedea0bb975525fc0f5672e4088.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'guides/source/migrations.md')
-rw-r--r--guides/source/migrations.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md
index fcfc54a3d7..550f8fdc3c 100644
--- a/guides/source/migrations.md
+++ b/guides/source/migrations.md
@@ -852,7 +852,7 @@ end
# app/models/product.rb
class Product < ActiveRecord::Base
- validates :flag, :inclusion => { :in => [true, false] }
+ validates :flag, inclusion: { in: [true, false] }
end
```
@@ -877,7 +877,7 @@ end
# app/models/product.rb
class Product < ActiveRecord::Base
- validates :flag, :inclusion => { :in => [true, false] }
+ validates :flag, inclusion: { in: [true, false] }
validates :fuzz, presence: true
end
```
@@ -1065,8 +1065,8 @@ with foreign key constraints in the database.
Although Active Record does not provide any tools for working directly with
such features, the `execute` method can be used to execute arbitrary SQL. You
-could also use some gem like
-[foreigner](https://github.com/matthuhiggins/foreigner) which add foreign key
+can also use a gem like
+[foreigner](https://github.com/matthuhiggins/foreigner) which adds foreign key
support to Active Record (including support for dumping foreign keys in
`db/schema.rb`).