aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorFrancis Go <francis.go@gmail.com>2013-09-28 15:39:12 +1000
committerFrancis Go <francis.go@gmail.com>2013-09-28 15:39:12 +1000
commit98a5169c2ee6355a6e13df33b6219b04201d1c96 (patch)
treedac0321e85928b12044a24a6900abe24265c37a1 /guides
parent3e0a60e4e2316ee696bdcf1c115582f8f450ad07 (diff)
downloadrails-98a5169c2ee6355a6e13df33b6219b04201d1c96.tar.gz
rails-98a5169c2ee6355a6e13df33b6219b04201d1c96.tar.bz2
rails-98a5169c2ee6355a6e13df33b6219b04201d1c96.zip
Migrations Guide: Fix line length [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 0f5379059e..83e7097020 100644
--- a/guides/source/migrations.md
+++ b/guides/source/migrations.md
@@ -1040,8 +1040,8 @@ this, then you should set the schema format to `:sql`.
Instead of using Active Record's schema dumper, the database's structure will
be dumped using a tool specific to the database (via the `db:structure:dump`
Rake task) into `db/structure.sql`. For example, for PostgreSQL, the `pg_dump`
-utility is used. For MySQL, this file will contain the output of `SHOW CREATE
-TABLE` for the various tables.
+utility is used. For MySQL, this file will contain the output of
+`SHOW CREATE TABLE` for the various tables.
Loading these schemas is simply a question of executing the SQL statements they
contain. By definition, this will create a perfect copy of the database's