Skip to content

Commit

Permalink
Fix default value for Participation.passed (set false)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rayvented committed Nov 23, 2023
1 parent 23defde commit 389b4ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/Participation.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Participation extends EntityWithTimestamps
private ?string $state = null;

#[ORM\Column]
private ?bool $passed = null;
private ?bool $passed = false;

#[ORM\ManyToOne(inversedBy: 'participations')]
#[ORM\JoinColumn(name: 'akademie_buchungen_id')]
Expand Down

0 comments on commit 389b4ba

Please sign in to comment.