aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record.rb
diff options
context:
space:
mode:
authorPat Allan <pat@freelancing-gods.com>2012-06-17 01:44:29 +0200
committerPat Allan <pat@freelancing-gods.com>2012-06-17 01:51:33 +0200
commit619453d594187bc53b4c20d57e7821d8c166b71b (patch)
tree3b6e5d2492d3c93a619699bef65be022823ae401 /activerecord/lib/active_record.rb
parent08477a651648ba4417ded128aa37b9ae0dcbc9ce (diff)
downloadrails-619453d594187bc53b4c20d57e7821d8c166b71b.tar.gz
rails-619453d594187bc53b4c20d57e7821d8c166b71b.tar.bz2
rails-619453d594187bc53b4c20d57e7821d8c166b71b.zip
A beginning of sorts.
Minimal implementation that supports db:create SQLite replacement
Diffstat (limited to 'activerecord/lib/active_record.rb')
-rw-r--r--activerecord/lib/active_record.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb
index f8526bb691..c6dc7db2e8 100644
--- a/activerecord/lib/active_record.rb
+++ b/activerecord/lib/active_record.rb
@@ -137,6 +137,12 @@ module ActiveRecord
end
end
+ module Tasks
+ extend ActiveSupport::Autoload
+
+ autoload :DatabaseTasks
+ end
+
autoload :TestCase
autoload :TestFixtures, 'active_record/fixtures'
end