class YeetDba::ForeignKey

Attributes

column[RW]
table_a[RW]
table_b[RW]

Public Class Methods

new(table_a:, table_b:, column:) click to toggle source
# File lib/yeet_dba/models/foreign_key.rb, line 7
def initialize(table_a:, table_b:, column:)
  @table_a = table_a
  @table_b = table_b
  @column = column
end