Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
phuria committed Nov 20, 2016
1 parent e94e78f commit 8fe297d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

0.8.3 [2016-11-20]
-----------------

### Added
+ AbstractInsertBuilder::addColumn()

0.8.2 [2016-11-20]
-----------------

Expand Down
12 changes: 12 additions & 0 deletions src/QueryBuilder/AbstractInsertBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ public function setColumns($columns)
return $this;
}

/**
* @param mixed $column
*
* @return $this
*/
public function addColumn($column)
{
$this->columns[] = $column;

return $this;
}

/**
* @return array
*/
Expand Down

0 comments on commit 8fe297d

Please sign in to comment.