aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2018-04-24 14:43:49 -0400
committerGitHub <noreply@github.com>2018-04-24 14:43:49 -0400
commit3278bca8771bacbc5b9574ee202f153651178142 (patch)
tree20b486488d510bee491f071017464113ca4204f8
parent42c9b560cb5d8c3ca11afe141cbc8dabfb970e61 (diff)
parentcc6d2dc0debffb0f3493c1a4e36649e7cb79cb2c (diff)
downloadrails-3278bca8771bacbc5b9574ee202f153651178142.tar.gz
rails-3278bca8771bacbc5b9574ee202f153651178142.tar.bz2
rails-3278bca8771bacbc5b9574ee202f153651178142.zip
Merge pull request #32712 from composerinteralia/migrations-typo
Fix typo in migrations guide [ci skip]
-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 ecd042b064..d09adf3c19 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -976,7 +976,7 @@ using a tool specific to the database into `db/structure.sql`. For example, for
PostgreSQL, the `pg_dump` utility is used. For MySQL and MariaDB, this file will
contain the output of `SHOW CREATE TABLE` for the various tables.
-To load the schema from `db/strcuture.sql`, run `rails db:structure:load`.
+To load the schema from `db/structure.sql`, run `rails db:structure:load`.
Loading this file is done by executing the SQL statements it contains. By
definition, this will create a perfect copy of the database's structure.