Class: ActiveRecord::ConnectionAdapters::PostgreSQLColumn

Inherits:
JdbcColumn
  • Object
show all
Includes:
ArJdbc::PostgreSQL::Column
Defined in:
lib/arjdbc/postgresql/adapter.rb

Instance Attribute Summary

Attributes inherited from JdbcColumn

#limit, #precision

Instance Method Summary collapse

Methods included from ArJdbc::PostgreSQL::Column

included

Methods inherited from JdbcColumn

column_types, #default_value, driver_constants, #init_column

Constructor Details

#initialize(name, *args) ⇒ PostgreSQLColumn

Returns a new instance of PostgreSQLColumn.



772
773
774
775
776
777
778
# File 'lib/arjdbc/postgresql/adapter.rb', line 772

def initialize(name, *args)
  if Hash === name
    super
  else
    super(nil, name, *args)
  end
end

Instance Method Details

#call_discovered_column_callbacksObject



780
781
# File 'lib/arjdbc/postgresql/adapter.rb', line 780

def call_discovered_column_callbacks(*)
end