KevinColemanInc/yeet_dba

View on GitHub
lib/yeet_dba/models/foreign_key.rb

Summary

Maintainability
A
0 mins
Test Coverage
module YeetDba
  class ForeignKey
    attr_accessor :table_a,
                  :table_b,
                  :column

    def initialize(table_a:, table_b:, column:)
      @table_a = table_a
      @table_b = table_b
      @column = column
    end
  end
end