The problem is how you have named the `Player_Stats` table.
You can rename the table using snake_case for example 'player_stats' or by changing the value of the name property in the @Table annotation as indicated in another answer to @Table(name="`Player_Stats`") .
I recommend to you to change the table name and change it in the @Table annotation too.
Steps to do it:
ALTER TABLE "Player_Stats" RENAME TO player_stats;
@Table(name="player_stats")