mirror of
https://github.com/AppleDash/SaneEconomy.git
synced 2024-11-05 01:59:35 +01:00
Fix length of player_uuid column in player_balances table.
This commit is contained in:
parent
a79b719e63
commit
4a1a363c71
@ -58,7 +58,7 @@ public class EconomyStorageBackendMySQL implements EconomyStorageBackend {
|
||||
private void createTable() {
|
||||
Connection conn = openConnection();
|
||||
try {
|
||||
PreparedStatement ps = conn.prepareStatement("CREATE TABLE IF NOT EXISTS `player_balances` (player_uuid CHAR(38), balance DECIMAL(18, 2))");
|
||||
PreparedStatement ps = conn.prepareStatement("CREATE TABLE IF NOT EXISTS `player_balances` (player_uuid CHAR(36), balance DECIMAL(18, 2))");
|
||||
ps.executeUpdate();
|
||||
conn.close();
|
||||
} catch (SQLException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user