Skip to content

Commit

Permalink
Make applicationText nullable (#1276)
Browse files Browse the repository at this point in the history
  • Loading branch information
BentiGorlich committed Jan 7, 2025
1 parent 4984236 commit 26c282d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface, Visibil
public string $type;

#[Column(type: 'text', nullable: true)]
public string $applicationText;
public ?string $applicationText;

#[Column(type: 'enumApplicationStatus', nullable: false, options: ['default' => EApplicationStatus::Approved->value])]
private string $applicationStatus;
Expand Down

0 comments on commit 26c282d

Please sign in to comment.