Skip to content

Commit

Permalink
Merge pull request #97 from brandonkelly/develop-v5
Browse files Browse the repository at this point in the history
Fixed errors on Postgres
  • Loading branch information
janhenckens authored Nov 29, 2024
2 parents 7df7be6 + a91e7a7 commit b1381db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected function createTables()
'id' => $this->primaryKey(),
'siteId' => $this->integer(11)->notNull(),
'defaultMeta' => $this->text(),
'enableRobots' => $this->boolean()->defaultValue(1),
'enableRobots' => $this->boolean()->defaultValue(true),
'robots' => $this->text(),
'schema' => $this->text(),
'sitemap' => $this->text(),
Expand Down Expand Up @@ -106,7 +106,7 @@ protected function createTables()
'urlPath' => $this->text(),
'urlParams' => $this->text(),
'referrer' => $this->text(),
'handled' => $this->boolean()->defaultValue(0),
'handled' => $this->boolean()->defaultValue(false),
'counter' => $this->bigInteger(),
'redirect' => $this->integer(11),
'dateLastHit' => $this->dateTime()->notNull(),
Expand Down
2 changes: 1 addition & 1 deletion src/migrations/m191114_182559_addNotFoundTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function safeUp()
'urlPath' => $this->text(),
'urlParams' => $this->text(),
'referrer' => $this->text(),
'handled' => $this->boolean()->defaultValue(0),
'handled' => $this->boolean()->defaultValue(false),
'counter' => $this->bigInteger(),
'redirect' => $this->integer(11),
'dateLastHit' => $this->dateTime()->notNull(),
Expand Down

0 comments on commit b1381db

Please sign in to comment.