aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_migrations.md
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-04-19 15:40:25 -0400
committerJon Moss <me@jonathanmoss.me>2017-04-19 15:40:25 -0400
commit54fa07f2c87a7aad9a17539e409497e46d2607cd (patch)
tree113cae8e7f685c75c6e4a82b49950ba71c1e2771 /guides/source/active_record_migrations.md
parentc324f5d8bbd717b308776bf47a5fed83ce691e66 (diff)
downloadrails-54fa07f2c87a7aad9a17539e409497e46d2607cd.tar.gz
rails-54fa07f2c87a7aad9a17539e409497e46d2607cd.tar.bz2
rails-54fa07f2c87a7aad9a17539e409497e46d2607cd.zip
Reword sentence
Sentence had some awkward grammar and was kind of confusing, tried to make it easier to understand what it was trying to say :) [ci skip]
Diffstat (limited to 'guides/source/active_record_migrations.md')
-rw-r--r--guides/source/active_record_migrations.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md
index 75e1096426..7fdb5901f3 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -973,9 +973,9 @@ that Active Record supports. This could be very useful if you were to
distribute an application that is able to run against multiple databases.
NOTE: `db/schema.rb` cannot express database specific items such as triggers,
-sequences, stored procedures or check constraints, etc. While in a migration you
-can execute custom SQL statements, the schema dumper cannot reconstitute those
-statements from the database. If you are using features like this, then you
+sequences, stored procedures or check constraints, etc. Please note that while
+custom SQL statements can be run in migrations, these statements cannot be reconstituted
+by the schema dumper. If you are using features like this, then you
should set the schema format to `:sql`.
Instead of using Active Record's schema dumper, the database's structure will