aboutsummaryrefslogtreecommitdiffstats
path: root/railties/environments/environment.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-02-27 00:23:49 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-02-27 00:23:49 +0000
commit660952e5b0a50fb55c1b2f3d7fbe85d7eb9c86cc (patch)
tree95a46ad17bf398e355ef79fab5a1cfa0b09cd1fb /railties/environments/environment.rb
parentc5ff33cd7b9c0dd0340b390a48d1d385629f1134 (diff)
downloadrails-660952e5b0a50fb55c1b2f3d7fbe85d7eb9c86cc.tar.gz
rails-660952e5b0a50fb55c1b2f3d7fbe85d7eb9c86cc.tar.bz2
rails-660952e5b0a50fb55c1b2f3d7fbe85d7eb9c86cc.zip
CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default instead of :sql. This means that we'll assume you want to live in the world of db/schema.rb where the grass is green and the girls are pretty. If your schema contains un-dumpable elements, such as constraints or database-specific column types, you just got an invitation to either 1) patch the dumper to include foreign key support, 2) stop being db specific, or 3) just change the default in config/environment.rb to config.active_record.schema_format = :sql -- we even include an example for that on new Rails skeletons now. Brought to you by the federation of opinionated framework builders! [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3678 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/environments/environment.rb')
-rw-r--r--railties/environments/environment.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb
index 7e3f3d26a7..81fd793abb 100644
--- a/railties/environments/environment.rb
+++ b/railties/environments/environment.rb
@@ -24,9 +24,10 @@ Rails::Initializer.run do |config|
# (create the session table with 'rake create_sessions_table')
# config.action_controller.session_store = :active_record_store
- # Use Active Record's schema dumper instead of SQL when creating the test database
- # (enables use of different database adapters for development and test environments)
- # config.active_record.schema_format = :ruby
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
+ # like if you have constraints or database-specific column types
+ # config.active_record.schema_format = :sql
# Activate observers that should always be running
# config.active_record.observers = :cacher, :garbage_collector