aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record.rb
diff options
context:
space:
mode:
authorPat Allan <pat@freelancing-gods.com>2012-06-17 13:43:24 +0200
committerPat Allan <pat@freelancing-gods.com>2012-06-17 13:43:24 +0200
commitd29727235ae967e1ae4880ddfa5fd37d726f779d (patch)
tree20fa641915379f67466fa8913f3326302e539491 /activerecord/lib/active_record.rb
parent8aaeaf6f90f5ff5e32a9d5ce56815ab0acbcc2d5 (diff)
downloadrails-d29727235ae967e1ae4880ddfa5fd37d726f779d.tar.gz
rails-d29727235ae967e1ae4880ddfa5fd37d726f779d.tar.bz2
rails-d29727235ae967e1ae4880ddfa5fd37d726f779d.zip
db:create for MySQL now much cleaner.
Diffstat (limited to 'activerecord/lib/active_record.rb')
-rw-r--r--activerecord/lib/active_record.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb
index c6dc7db2e8..3b37b001f7 100644
--- a/activerecord/lib/active_record.rb
+++ b/activerecord/lib/active_record.rb
@@ -141,6 +141,8 @@ module ActiveRecord
extend ActiveSupport::Autoload
autoload :DatabaseTasks
+ autoload :SQLiteDatabaseTasks, 'active_record/tasks/sqlite_database_tasks'
+ autoload :MySQLDatabaseTasks, 'active_record/tasks/mysql_database_tasks'
end
autoload :TestCase