diff options
author | Alex Tambellini <atambellini@gmail.com> | 2011-12-19 11:41:52 -0500 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-12-20 22:27:33 +0530 |
commit | fec2999e65ad355b911911205e48432b24ab93a4 (patch) | |
tree | f3824614cad2869cc5ac6e66873d43a7c3a67a6e /railties/guides | |
parent | e149d5059b420449ab010f7d0596b1cb84725df1 (diff) | |
download | rails-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/guides')
-rw-r--r-- | railties/guides/source/migrations.textile | 2 |
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 |