diff options
author | Jon Leighton <j@jonathanleighton.com> | 2013-02-15 16:30:59 +0000 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2013-02-15 16:38:45 +0000 |
commit | 7d93d91ab411c4f8b86f3c8726c733ae164aa658 (patch) | |
tree | 55a09ce716fc0d2b0be229beb320a39b59385960 | |
parent | 0c145448c42e811f9241e1634ecd2d60ddefff3a (diff) | |
download | rails-7d93d91ab411c4f8b86f3c8726c733ae164aa658.tar.gz rails-7d93d91ab411c4f8b86f3c8726c733ae164aa658.tar.bz2 rails-7d93d91ab411c4f8b86f3c8726c733ae164aa658.zip |
Remove valid_type? method
It was supposed to be removed by the preceding two reversions but I did
them in the wrong order.
4 files changed, 0 insertions, 17 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb index eecf4faa5d..26f601bf05 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb @@ -326,10 +326,6 @@ module ActiveRecord # override in derived class ActiveRecord::StatementInvalid.new(message) end - - def valid_types?(type) - true - end end end end diff --git a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb index de5232f960..e07dbc7da9 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb @@ -747,10 +747,6 @@ module ActiveRecord # ...and send them all in one query execute("SET #{encoding} #{variable_assignments}", :skip_logging) end - - def valid_type?(type) - !native_database_types[type].nil? - end end end end diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index 271a6848ee..0818760b11 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -887,10 +887,6 @@ module ActiveRecord def table_definition TableDefinition.new(self) end - - def valid_type?(type) - !native_database_types[type].nil? - end end end end diff --git a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb index b644e7bd60..91444950be 100644 --- a/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb @@ -602,11 +602,6 @@ module ActiveRecord super end end - - def valid_type?(type) - true - end - end end end |