From 54539b5fce42ce20ff7a0cd88300dbadfd70e0bf Mon Sep 17 00:00:00 2001 From: Henrique Matias Date: Thu, 7 Jan 2016 19:09:50 -0200 Subject: [PATCH 1/2] adding a new type of column (boolean) --- src/Queries/Columns/BooleanColumn.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Queries/Columns/BooleanColumn.php diff --git a/src/Queries/Columns/BooleanColumn.php b/src/Queries/Columns/BooleanColumn.php new file mode 100644 index 0000000..f9ed992 --- /dev/null +++ b/src/Queries/Columns/BooleanColumn.php @@ -0,0 +1,25 @@ +splitColumn + ); + if (empty($this->splitColumn)) { + $this->setInvalidColumnException('Invalid Column.'); + } + } + + protected function defineDefault() + { + } +} From 6217852a439ac89409f2b1d7288f7e3692f51a89 Mon Sep 17 00:00:00 2001 From: Henrique Matias Date: Wed, 13 Jan 2016 19:40:47 -0200 Subject: [PATCH 2/2] creating and editing changelog file --- CHANGELOG.md | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 881c4a1..bc71057 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,18 @@ # Changelog -All Notable changes to `:package_name` will be documented in this file -## NEXT - YYYY-MM-DD +All Notable changes to this project will be documented in this file +we use the follow tags to organize our release: ### Added -- Nothing - ### Deprecated -- Nothing - ### Fixed -- Nothing - ### Removed -- Nothing - ### Security -- Nothing + + +RELEASES ============================================================================ + +## [Unreleased] +### Added +- CREATE TABLE reader from @marco