Skip to content

Commit

Permalink
Add todo
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeholder committed Feb 4, 2025
1 parent 0dfbb5a commit 4bc945c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ public function createTables(): void
'id' => $this->integer()->notNull(),
'primaryOwnerId' => $this->integer(),
'isDefault' => $this->boolean()->notNull()->defaultValue(false),
'deletedWithProduct' => $this->boolean()->notNull()->defaultValue(false),
'deletedWithProduct' => $this->boolean()->notNull()->defaultValue(false), // TODO: Remove in 6.0
'dateCreated' => $this->dateTime()->notNull(),
'dateUpdated' => $this->dateTime()->notNull(),
'uid' => $this->uid(),
Expand Down

0 comments on commit 4bc945c

Please sign in to comment.