export class Relation {
  public column: string;
  public table: string;

  public constructor (table: string, column: string) {
    this.column = column;
    this.table = table;
  }
}