diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-06-18 01:44:15 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-06-18 01:44:15 -0500 |
commit | 7fd77474970fb170f26b56a6b38ef1a19cd816f9 (patch) | |
tree | b16da6bacfc83311fc36185b2ac5bb0e920e19b0 /activerecord/lib | |
parent | a6cda5416bfb639a035bf5a7d24fa68b6381a540 (diff) | |
download | rails-7fd77474970fb170f26b56a6b38ef1a19cd816f9.tar.gz rails-7fd77474970fb170f26b56a6b38ef1a19cd816f9.tar.bz2 rails-7fd77474970fb170f26b56a6b38ef1a19cd816f9.zip |
fix invalid syntax and sqlite rake failing tests
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/tasks/sqlite_database_tasks.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/tasks/sqlite_database_tasks.rb b/activerecord/lib/active_record/tasks/sqlite_database_tasks.rb index aea364ecbb..85f4c12829 100644 --- a/activerecord/lib/active_record/tasks/sqlite_database_tasks.rb +++ b/activerecord/lib/active_record/tasks/sqlite_database_tasks.rb @@ -25,7 +25,6 @@ module ActiveRecord FileUtils.rm(file) if File.exist?(file) end - alias :purge :drop private @@ -37,4 +36,6 @@ module ActiveRecord def root @root end - end
\ No newline at end of file + end + end +end
\ No newline at end of file |