Fix typo in migrations guide [ci skip]

Introduced in #32646
This commit is contained in:
Daniel Colson 2018-04-24 12:51:34 -04:00
parent 42c9b560cb
commit cc6d2dc0de
1 changed files with 1 additions and 1 deletions

View File

@ -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.