Skip to content

Commit

Permalink
Fixed: Birth date removed but null broke db. Changed to default to 0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stardog committed Jul 24, 2018
1 parent def0720 commit 2fc4927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class/Internship.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Internship {
public $first_name;
public $middle_name;
public $last_name;
public $birth_date;
public $birth_date = 0;

// Metaphones for fuzzy search
public $first_name_meta;
Expand Down

0 comments on commit 2fc4927

Please sign in to comment.