Module: Foreigner::ConnectionAdapters::AbstractAdapter

Defined in:
lib/foreigner/connection_adapters/abstract/schema_statements.rb

Instance Method Summary collapse

Instance Method Details

#foreign_keys(table_name) ⇒ Object

Return the foreign keys for the schema_dumper



17
18
19
# File 'lib/foreigner/connection_adapters/abstract/schema_statements.rb', line 17

def foreign_keys(table_name)
  []
end

#supports_foreign_keys?Boolean

Returns:

  • (Boolean)


12
13
14
# File 'lib/foreigner/connection_adapters/abstract/schema_statements.rb', line 12

def supports_foreign_keys?
  false
end