Example #1
0
 /**
  * Checks to see if a column exists.
  *
  * @param string $tableName  Table Name
  * @param string $columnName Column Name
  * @return bool
  */
 public function hasColumn($tableName, $columnName)
 {
     return $this->adapter->hasColumn($tableName, $columnName);
 }