aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-21 00:54:24 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-08-21 00:54:24 +0900
commit8b2e431db708b55e3c4cbd5df96080856be79059 (patch)
tree9c340d4c63de8bd2cda94e5ebcccc0c47603dc81 /activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
parent8170419b0a0e7abbfb2c64c84f641c0a39c163d0 (diff)
downloadrails-8b2e431db708b55e3c4cbd5df96080856be79059.tar.gz
rails-8b2e431db708b55e3c4cbd5df96080856be79059.tar.bz2
rails-8b2e431db708b55e3c4cbd5df96080856be79059.zip
Place `update_table_definition` consistently in `SchemaStatements`
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
index b2af01ab5b..a2a9017bd9 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
@@ -368,10 +368,6 @@ module ActiveRecord
@use_insert_returning
end
- def update_table_definition(table_name, base) #:nodoc:
- PostgreSQL::Table.new(table_name, base)
- end
-
def column_name_for_operation(operation, node) # :nodoc:
OPERATION_ALIASES.fetch(operation) { operation.downcase }
end