Module: PgGraph::Type::TableObject
- Included in:
- Column, RecordType, Table, TableType
- Defined in:
- lib/pg_graph/type/type.rb
Overview
Included by tables, records, and fields
Instance Method Summary collapse
- #record_type ⇒ Object
-
#table ⇒ Object
Circular definitions.
- #table_type ⇒ Object
Instance Method Details
#record_type ⇒ Object
55 |
# File 'lib/pg_graph/type/type.rb', line 55 def record_type() table_type.record_type end |
#table ⇒ Object
Circular definitions. Classes that include TableObject should redefine at least one of the methods to break the loop
53 |
# File 'lib/pg_graph/type/type.rb', line 53 def table() record_type.table end |
#table_type ⇒ Object
54 |
# File 'lib/pg_graph/type/type.rb', line 54 def table_type() table.type end |