aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_migrations.md
diff options
context:
space:
mode:
authorMatt Michnal <mattm3646@gmail.com>2016-02-04 22:34:30 -0700
committerMatt Michnal <mattm3646@gmail.com>2016-02-09 17:57:16 -0700
commit767f168772aa697192d6c79b6bfaf942ed96b1e2 (patch)
tree6934d8c1ec8ac38388cf0628ea34b017427e54ed /guides/source/active_record_migrations.md
parentbd6971812434e6f016977dc5c39fbc6450433471 (diff)
downloadrails-767f168772aa697192d6c79b6bfaf942ed96b1e2.tar.gz
rails-767f168772aa697192d6c79b6bfaf942ed96b1e2.tar.bz2
rails-767f168772aa697192d6c79b6bfaf942ed96b1e2.zip
Fixed grammatical errors in rails docs [ci skip]
Fixed errors in rails migrations docs [ci skip] Fixed errors in rails security docs [ci skip]
Diffstat (limited to 'guides/source/active_record_migrations.md')
-rw-r--r--guides/source/active_record_migrations.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md
index 83f4b951ee..bd7dbd0f11 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -883,7 +883,7 @@ Changing Existing Migrations
----------------------------
Occasionally you will make a mistake when writing a migration. If you have
-already run the migration then you cannot just edit the migration and run the
+already run the migration, then you cannot just edit the migration and run the
migration again: Rails thinks it has already run the migration and so will do
nothing when you run `rails db:migrate`. You must rollback the migration (for
example with `bin/rails db:rollback`), edit your migration and then run
@@ -933,7 +933,7 @@ There are two ways to dump the schema. This is set in `config/application.rb`
by the `config.active_record.schema_format` setting, which may be either `:sql`
or `:ruby`.
-If `:ruby` is selected then the schema is stored in `db/schema.rb`. If you look
+If `:ruby` is selected, then the schema is stored in `db/schema.rb`. If you look
at this file you'll find that it looks an awful lot like one very big
migration: