Class: ActiveRecord::ConnectionAdapters::PostgreSQLColumn
- Inherits:
-
JdbcColumn
- Object
- Column
- JdbcColumn
- ActiveRecord::ConnectionAdapters::PostgreSQLColumn
- Includes:
- ArJdbc::PostgreSQL::Column
- Defined in:
- lib/arjdbc/postgresql/adapter.rb
Instance Attribute Summary
Attributes inherited from JdbcColumn
Instance Method Summary collapse
- #call_discovered_column_callbacks ⇒ Object
-
#initialize(name, *args) ⇒ PostgreSQLColumn
constructor
A new instance of PostgreSQLColumn.
Methods included from ArJdbc::PostgreSQL::Column
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_callbacks ⇒ Object
780 781 |
# File 'lib/arjdbc/postgresql/adapter.rb', line 780 def call_discovered_column_callbacks(*) end |