aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-09-25 08:27:41 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-09-25 08:30:39 +0900
commit8f037a5ab929f929fe0897edc9ecadf901c32e56 (patch)
tree03c8e46e071cee75528bea727c5046e7581c7500 /activerecord/lib/active_record/connection_adapters/postgresql
parent018b16f988dfd129f5dc7091eadda8eb05cdba76 (diff)
downloadrails-8f037a5ab929f929fe0897edc9ecadf901c32e56.tar.gz
rails-8f037a5ab929f929fe0897edc9ecadf901c32e56.tar.bz2
rails-8f037a5ab929f929fe0897edc9ecadf901c32e56.zip
Extract `integer_like_primary_key_type` to ease to handle it for adapters
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/postgresql')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb
index cb13f9fec1..75622eb304 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb
@@ -179,17 +179,14 @@ module ActiveRecord
class TableDefinition < ActiveRecord::ConnectionAdapters::TableDefinition
include ColumnMethods
- def new_column_definition(name, type, **options) # :nodoc:
- if integer_like_primary_key?(type, options)
- type = if type == :bigint || options[:limit] == 8
+ private
+ def integer_like_primary_key_type(type, options)
+ if type == :bigint || options[:limit] == 8
:bigserial
else
:serial
end
end
-
- super
- end
end
class Table < ActiveRecord::ConnectionAdapters::Table