Sha256: c0e3eb3e4a875afed05e6d43567161b670b89986cf68bed8fba51d99314e3479

Contents?: true

Size: 292 Bytes

Versions: 8

Compression:

Stored size: 292 Bytes

Contents

# frozen_string_literal: true

module TableSaw
  class InformationSchema
    def constraint_names
      foreign_key_relationships.constraint_names
    end

    def foreign_key_relationships
      @foreign_key_relationships ||= TableSaw::Queries::ForeignKeyRelationships.new
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
table_saw-3.2.0 lib/table_saw/information_schema.rb
table_saw-3.1.0 lib/table_saw/information_schema.rb
table_saw-3.0.0 lib/table_saw/information_schema.rb
table_saw-2.10.0 lib/table_saw/information_schema.rb
table_saw-2.9.0 lib/table_saw/information_schema.rb
table_saw-2.8.1 lib/table_saw/information_schema.rb
table_saw-2.8.0 lib/table_saw/information_schema.rb
table_saw-2.7.0 lib/table_saw/information_schema.rb