class Kibutsu::ForeignKeyColumn

Corresponds to a foreign key column in the database.

Attributes

name[R]
source_table[R]
target_table[R]

Public Class Methods

new(source_table, name, target_table) click to toggle source
# File lib/kibutsu/foreign_key_column.rb, line 4
def initialize(source_table, name, target_table)
  @source_table = source_table
  @name = name
  @target_table = target_table
end