Skip to content

Commit

Permalink
Merge branch '5.x' into feature/pt-1930-5x-new-productsvariants-are-n…
Browse files Browse the repository at this point in the history
…ot-promotable-by-default
  • Loading branch information
nfourtythree committed Jul 11, 2024
2 parents 078c956 + 1a13c2e commit b42b2e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ public function createTables(): void
'tracked' => $this->boolean()->notNull()->defaultValue(false),
'minQty' => $this->integer(),
'maxQty' => $this->integer(),
'shippingCategoryId' => $this->integer()->notNull(),
'shippingCategoryId' => $this->integer()->null(),
'dateCreated' => $this->dateTime()->notNull(),
'dateUpdated' => $this->dateTime()->notNull(),
'uid' => $this->uid(),
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/data/tax-category.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'name' => 'Another Tax Category',
'handle' => 'anotherTaxCategory',
'description' => 'this is another tax category',
'default' => '1',
'default' => '0',
'uid' => 'tax--category-1001---------------uid',
],
];

0 comments on commit b42b2e6

Please sign in to comment.