module Torque::PostgreSQL::Adapter::TableDefinition

Attributes

inherits[R]

Public Class Methods

new(*args, **options) click to toggle source
Calls superclass method
# File lib/torque/postgresql/adapter/schema_definitions.rb, line 37
def initialize(*args, **options)
  super

  @inherits = Array.wrap(options.delete(:inherits)).flatten.compact \
    if options.key?(:inherits)
end