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
This commit is contained in:
Nicholas Seckar
2005-07-22 16:52:59 +00:00
parent c19ca5148f
commit 2cdc2a0d30
2 changed files with 2 additions and 4 deletions

View File

@@ -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]

View File

@@ -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