aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorAlex Tambellini <atambellini@gmail.com>2011-12-19 11:41:52 -0500
committerVijay Dev <vijaydev.cse@gmail.com>2011-12-20 22:27:33 +0530
commitfec2999e65ad355b911911205e48432b24ab93a4 (patch)
treef3824614cad2869cc5ac6e66873d43a7c3a67a6e /railties
parente149d5059b420449ab010f7d0596b1cb84725df1 (diff)
downloadrails-fec2999e65ad355b911911205e48432b24ab93a4.tar.gz
rails-fec2999e65ad355b911911205e48432b24ab93a4.tar.bz2
rails-fec2999e65ad355b911911205e48432b24ab93a4.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.
Diffstat (limited to 'railties')
-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