Skip to content

Commit

Permalink
Fix missing sortOrder column in install migration
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Feb 11, 2018
1 parent 73a4e12 commit c3b5707
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ protected function createTables()
'ownerSiteId' => $this->integer(),
'fieldId' => $this->integer()->notNull(),
'typeId' => $this->integer()->notNull(),
'sortOrder' => $this->smallInteger()->unsigned(),
'dateCreated' => $this->dateTime()->notNull(),
'dateUpdated' => $this->dateTime()->notNull(),
'uid' => $this->uid(),
Expand Down

0 comments on commit c3b5707

Please sign in to comment.