Skip to content

Commit

Permalink
Increase redirect origin field length
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny van Wijk committed Jun 12, 2024
1 parent 458ee42 commit 6be1a74
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Kunstmaan/RedirectBundle/Entity/Redirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ class Redirect extends AbstractEntity
/**
* @var string
*
* @ORM\Column(name="origin", type="string", length=255)
* @ORM\Column(name="origin", type="string", length=500)
*/
#[ORM\Column(name: 'origin', type: 'string', length: 255)]
#[ORM\Column(name: 'origin', type: 'string', length: 500)]
#[Assert\NotBlank]
#[Assert\Length(max: 500)]
private $origin;

/**
Expand Down

0 comments on commit 6be1a74

Please sign in to comment.