Skip to content

Commit

Permalink
version 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Aug 28, 2018
1 parent b56cc94 commit 2b211f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.9 - 2018-08-28

### Fixed
- Fix missing column for propagateNodes in install (whoops).

## 1.0.8 - 2018-08-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "verbb/navigation",
"description": "A Craft CMS plugin to create navigation menus for your site.",
"type": "craft-plugin",
"version": "1.0.8",
"version": "1.0.9",
"keywords": [
"craft",
"cms",
Expand Down
1 change: 1 addition & 0 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public function createTables()
'name' => $this->string()->notNull(),
'handle' => $this->string()->notNull(),
'sortOrder' => $this->smallInteger()->unsigned(),
'propagateNodes' => $this->boolean()->defaultValue(false),
'dateCreated' => $this->dateTime()->notNull(),
'dateUpdated' => $this->dateTime()->notNull(),
'uid' => $this->uid(),
Expand Down

0 comments on commit 2b211f1

Please sign in to comment.