Skip to content

Commit

Permalink
fix: prevent integrity constraint violation for notes column
Browse files Browse the repository at this point in the history
INT-551
  • Loading branch information
joerivanveen committed Jul 16, 2024
1 parent c29aa3b commit 4e08ca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/MyparcelnlOrderData.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MyparcelnlOrderData extends AbstractEntity implements EntityWithTimestamps

/**
* @var string
* @ORM\Column(name="notes", type="text")
* @ORM\Column(name="notes", type="text", nullable=true)
*/
private $notes;

Expand Down

0 comments on commit 4e08ca8

Please sign in to comment.