Class: ActiveRecord::ConnectionAdapters::PostgreSQL::TableDefinition
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
|
|
|
Instance Chain:
|
|
| Inherits: |
ActiveRecord::ConnectionAdapters::TableDefinition
|
| Defined in: | activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb |
Class Method Summary
- .new ⇒ TableDefinition constructor
::ActiveRecord::ConnectionAdapters::TableDefinition - Inherited
Instance Attribute Summary
- #unlogged readonly
::ActiveRecord::ConnectionAdapters::TableDefinition - Inherited
Instance Method Summary
ColumnMethods - Included
| #bigserial, #bit, #bit_varying, #box, #cidr, #circle, #citext, #daterange, #hstore, #inet, #int4range, #int8range, #interval, #jsonb, #line, #lseg, #ltree, #macaddr, #money, #numrange, #oid, #path, #point, #polygon, | |
| #primary_key | Defines the primary key field. |
| #serial, #tsrange, #tstzrange, #tsvector, #uuid, #xml | |
::ActiveRecord::ConnectionAdapters::TableDefinition - Inherited
| #[] | Returns a |
| #belongs_to | Alias for TableDefinition#references. |
| #check_constraint, | |
| #column | Instantiates a new column for the table. |
| #columns | Returns an array of |
| #index | Adds index options to the indexes hash, keyed by column name This is primarily used to track indexes that need to be created after the table. |
| #numeric, | |
| #references | Adds a reference. |
| #remove_column | remove the column |
| #timestamps | Appends |
::ActiveRecord::ConnectionAdapters::ColumnMethods - Included
| #column | Appends a column or columns of a specified type. |
| #primary_key | Appends a primary key definition to the table definition. |
Constructor Details
.new ⇒ TableDefinition
# File 'activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb', line 189
def initialize(*, **) super @unlogged = ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.create_unlogged_tables end
Instance Attribute Details
#unlogged (readonly)
[ GitHub ]# File 'activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb', line 187
attr_reader :unlogged