diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-11-24 12:30:04 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-11-24 12:31:16 -0600 |
commit | 835be0cbedd56bb4af71f1104d311d0e425e7abf (patch) | |
tree | 08395fc6b686f8850a910ece45908a1688e31911 /activerecord | |
parent | 61becfe2b99f1d026c300fbe16ac853b2147b3cf (diff) | |
download | rails-835be0cbedd56bb4af71f1104d311d0e425e7abf.tar.gz rails-835be0cbedd56bb4af71f1104d311d0e425e7abf.tar.bz2 rails-835be0cbedd56bb4af71f1104d311d0e425e7abf.zip |
missed ActiveRecord::Migrator
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb index 3293206d43..55f06ed832 100644 --- a/activerecord/lib/active_record.rb +++ b/activerecord/lib/active_record.rb @@ -50,6 +50,7 @@ module ActiveRecord autoload :Dirty, 'active_record/dirty' autoload :DynamicFinderMatch, 'active_record/dynamic_finder_match' autoload :Migration, 'active_record/migration' + autoload :Migrator, 'active_record/migration' autoload :NamedScope, 'active_record/named_scope' autoload :Observing, 'active_record/observer' autoload :QueryCache, 'active_record/query_cache' |