Skip to content

Commit

Permalink
Make applicationText nullable (#1276)
Browse files Browse the repository at this point in the history
  • Loading branch information
BentiGorlich authored Dec 9, 2024
1 parent eaa3390 commit bb2168b
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 @@ -242,7 +242,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 bb2168b

Please sign in to comment.