aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Tambellini <atambellini@gmail.com>2011-12-19 11:41:52 -0500
committerAlex Tambellini <atambellini@gmail.com>2011-12-19 11:41:52 -0500
commitff15c87ab9cd0046bc2010fe3227f2e86e1f05d7 (patch)
tree4ec27e50c1260aebd14ec6f8383edd8a70238cac
parentaa0286ecbc7ddbb386590274c8756e5364415b9e (diff)
downloadrails-ff15c87ab9cd0046bc2010fe3227f2e86e1f05d7.tar.gz
rails-ff15c87ab9cd0046bc2010fe3227f2e86e1f05d7.tar.bz2
rails-ff15c87ab9cd0046bc2010fe3227f2e86e1f05d7.zip
Fix reference to old :sql schema_format location
After 15fb430 the default location of the :sql schema_format location was changed from environment_name.sql to structure.sql. This pull request updates a reference to the old schema format location in the migration guides.
-rw-r--r--railties/guides/source/migrations.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile
index 92356edf90..66160f8b26 100644
--- a/railties/guides/source/migrations.textile
+++ b/railties/guides/source/migrations.textile
@@ -814,7 +814,7 @@ replaying the entire migration history. It is much simpler and faster to just
load into the database a description of the current schema.
For example, this is how the test database is created: the current development
-database is dumped (either to +db/schema.rb+ or +db/development.sql+) and then
+database is dumped (either to +db/schema.rb+ or +db/structure.sql+) and then
loaded into the test database.
Schema files are also useful if you want a quick look at what attributes an