Skip to content

Commit

Permalink
Merge pull request #245 from PrestaShop/filenameColumn
Browse files Browse the repository at this point in the history
Execution : Increased column size from 50 to 255
  • Loading branch information
Progi1984 authored Jul 17, 2024
2 parents c6d1fdc + 0dbf112 commit 3b3efad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/Execution.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Execution
#[ORM\Column(type: Types::BIGINT)]
private ?string $ref = null;

#[ORM\Column(length: 50, nullable: true)]
#[ORM\Column(length: 255, nullable: true)]
private ?string $filename = null;

#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
Expand Down

0 comments on commit 3b3efad

Please sign in to comment.