aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-08-30 01:10:30 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-08-30 01:10:30 -0300
commit3bcecf8258d6b63ded2714672f92ad767423e41f (patch)
tree1a52bb36cba798de1e330eb22ae54e8a4adc2a5a /guides
parent5f08154230f69a8aee88d72e09fe088bf728f506 (diff)
downloadrails-3bcecf8258d6b63ded2714672f92ad767423e41f.tar.gz
rails-3bcecf8258d6b63ded2714672f92ad767423e41f.tar.bz2
rails-3bcecf8258d6b63ded2714672f92ad767423e41f.zip
Fix typos [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/migrations.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md
index d154dae752..414ce46a4e 100644
--- a/guides/source/migrations.md
+++ b/guides/source/migrations.md
@@ -695,12 +695,12 @@ version to migrate to.
### Setup the Database
The `rake db:setup` task will create the database, load the schema and initialize
-it with seed data.
+it with the seed data.
### Resetting the Database
The `rake db:reset` task will drop the database and set it up again. This is
-functionally eqivalent to `rake db:drop db:setup`
+functionally equivalent to `rake db:drop db:setup`.
NOTE: This is not the same as running all the migrations. It will only use the
contents of the current schema.rb file. If a migration can't be rolled back,