diff options
author | Ugis Ozols <ugis.ozolss@gmail.com> | 2010-10-25 22:27:56 +0300 |
---|---|---|
committer | Ugis Ozols <ugis.ozolss@gmail.com> | 2010-10-25 22:27:56 +0300 |
commit | 8f141d0ce759541bc86d273adb96ada885b85145 (patch) | |
tree | 3a7dd6cc352789157158c6c9c612aafac8327265 /railties/guides | |
parent | 604c21102f05c4950c7b9fd5493a47a9818ca008 (diff) | |
download | rails-8f141d0ce759541bc86d273adb96ada885b85145.tar.gz rails-8f141d0ce759541bc86d273adb96ada885b85145.tar.bz2 rails-8f141d0ce759541bc86d273adb96ada885b85145.zip |
Changed environment.rb to application.rb
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 89aa007279..4c49a4ccbc 100644 --- a/railties/guides/source/migrations.textile +++ b/railties/guides/source/migrations.textile @@ -546,7 +546,7 @@ Schema files are also useful if you want a quick look at what attributes an Acti h4. Types of Schema Dumps -There are two ways to dump the schema. This is set in +config/environment.rb+ by the +config.active_record.schema_format+ setting, which may be either +:sql+ or +:ruby+. +There are two ways to dump the schema. This is set in +config/application.rb+ by the +config.active_record.schema_format+ setting, which may be either +:sql+ or +:ruby+. If +:ruby+ is selected then the schema is stored in +db/schema.rb+. If you look at this file you'll find that it looks an awful lot like one very big migration: |