Skip to content

Commit

Permalink
Make stock.size_id nullable in minimal.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
pylipp committed Oct 1, 2024
1 parent 706c79a commit 0ca1e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion back/minimal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2944,7 +2944,7 @@ CREATE TABLE `stock` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`box_id` varchar(11) NOT NULL DEFAULT '',
`product_id` int(11) unsigned NOT NULL,
`size_id` int(11) unsigned NOT NULL,
`size_id` int(11) unsigned DEFAULT NULL,
`display_unit_id` int(11) unsigned DEFAULT NULL,
`measure_value` decimal(36,18) unsigned DEFAULT NULL,
`items` int(11) DEFAULT NULL,
Expand Down

0 comments on commit 0ca1e43

Please sign in to comment.