Method: ActiveRecord::ConnectionAdapters::PostgreSQLColumn#initialize
- Defined in:
- lib/active_record/connection_adapters/postgresql/column.rb
#initialize(max_identifier_length: 63) ⇒ PostgreSQLColumn
Returns a new instance of PostgreSQLColumn.
10 11 12 13 |
# File 'lib/active_record/connection_adapters/postgresql/column.rb', line 10 def initialize(*, max_identifier_length: 63, **) super @max_identifier_length = max_identifier_length end |