aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/core.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2013-12-29 11:05:04 +0000
committerJon Leighton <j@jonathanleighton.com>2014-01-02 13:49:00 +0000
commitff7ab3bc78abc3e8439a57ef7d755c5aa5b069f4 (patch)
tree5ad6aed8ee454c320967d767229debde268da2e2 /activerecord/lib/active_record/core.rb
parenta1d0c0fa3d8ca97edc8f2a1d6ba96af19221dbad (diff)
downloadrails-ff7ab3bc78abc3e8439a57ef7d755c5aa5b069f4.tar.gz
rails-ff7ab3bc78abc3e8439a57ef7d755c5aa5b069f4.tar.bz2
rails-ff7ab3bc78abc3e8439a57ef7d755c5aa5b069f4.zip
Automatically maintain test database schema
* Move check from generated helper to test_help.rb, so that all applications can benefit * Rather than just raising when the test schema has pending migrations, try to load in the schema and only raise if there are pending migrations afterwards * Opt out of the check by setting config.active_record.maintain_test_schema = false * Deprecate db:test:* tasks. The test helper is now fully responsible for maintaining the test schema, so we don't need rake tasks for this. This is also a speed improvement since we're no longer reloading the test database on every call to "rake test".
Diffstat (limited to 'activerecord/lib/active_record/core.rb')
-rw-r--r--activerecord/lib/active_record/core.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index 8808ad5a4c..18ee77f6fe 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -69,6 +69,9 @@ module ActiveRecord
mattr_accessor :timestamped_migrations, instance_writer: false
self.timestamped_migrations = true
+ # :nodoc:
+ mattr_accessor :maintain_test_schema, instance_accessor: false
+
def self.disable_implicit_join_references=(value)
ActiveSupport::Deprecation.warn("Implicit join references were removed with Rails 4.1." \
"Make sure to remove this configuration because it does nothing.")