aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2005-07-22 16:52:59 +0000
committerNicholas Seckar <nseckar@gmail.com>2005-07-22 16:52:59 +0000
commit2cdc2a0d30a1c86808b7b491ccab334ecfe00da5 (patch)
tree39c75f2bc28841ec56e430ed792a378a4643512a /activerecord
parentc19ca5148f55984688d6af54fc4de4b21d528dfd (diff)
downloadrails-2cdc2a0d30a1c86808b7b491ccab334ecfe00da5.tar.gz
rails-2cdc2a0d30a1c86808b7b491ccab334ecfe00da5.tar.bz2
rails-2cdc2a0d30a1c86808b7b491ccab334ecfe00da5.zip
Remove extra definition of supports_migrations? from abstract_adaptor.rb
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1892 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/lib/active_record/connection_adapters/abstract_adapter.rb4
2 files changed, 2 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 018972d954..07fd379b88 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Remove extra definition of supports_migrations? from abstract_adaptor.rb [Nicholas Seckar]
+
* Fix acts_as_list so that moving next-to-last item to the bottom does not result in duplicate item positions
* Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718 [Maik Schmidt]
diff --git a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
index 6eda3c0624..e9473c1ca5 100755
--- a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
@@ -410,10 +410,6 @@ module ActiveRecord
raise NotImplementedError, "change_column_default is not implemented"
end
- def supports_migrations?
- false
- end
-
def rename_column(table_name, column_name, new_column_name)
raise NotImplementedError, "rename_column is not implemented"
end