Skip to content

Commit

Permalink
fix(sql): correct add user attempt query
Browse files Browse the repository at this point in the history
  • Loading branch information
danorris709 committed Mar 9, 2025
1 parent 2afd0f4 commit 0ba1226
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class SQLBattleTowerAttributeAdapter implements BattleTowerAttributeAdapt

public static final String LOAD_LAST_ATTEMPTS = "SELECT start, duration, floor_reached FROM `envy_battle_tower_players` WHERE uuid = ? AND tower = ? ORDER BY start ASC LIMIT 1;";

public static final String ADD_USER_ATTEMPT = "INSERT INTO `envy_battle_tower_players`(uuid, name, towerm start, duration, floor_reached) VALUES (?, ?, ?, ?, ?, ?);";
public static final String ADD_USER_ATTEMPT = "INSERT INTO `envy_battle_tower_players`(uuid, name, tower, start, duration, floor_reached) VALUES (?, ?, ?, ?, ?, ?);";

public static final String GET_TOP_ATTEMPTS = "SELECT uuid, name, start, duration, floor_reached FROM `envy_battle_tower_players` ORDER BY floor_reached DESC LIMIT 10;";

Expand Down

0 comments on commit 0ba1226

Please sign in to comment.