Skip to content

Commit

Permalink
changed the way some variables are spelt so they match front end
Browse files Browse the repository at this point in the history
  • Loading branch information
todd-bowers committed Sep 5, 2022
1 parent 65edccc commit 740c31d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ public class Squeaker {
@JsonIgnore
Set<Squeak> squeaks;
@Column(name = "first_name")
String firstName;
String first_name;
@Column(name = "last_name")
String lastName;
String last_name;
@Column(name = "profile_pic")
String profileImg;
String profile_pic;
@Column(name = "email", unique = true)
String email;
}

0 comments on commit 740c31d

Please sign in to comment.