Queries::modifyColumn PHP 메소드

modifyColumn() 공개 메소드

public modifyColumn ( $table, $column, $attributes )
    public function modifyColumn($table, $column, $attributes)
    {
        if (!$this->_db->modifyColumn($table, $column, $attributes)) {
            throw new Exception('There was a problem modifying the column ' . htmlspecialchars($column));
        }
    }