diff --git a/h2_playermanager/src/main/resources/sqls/create_tables.sql b/h2_playermanager/src/main/resources/sqls/create_tables.sql index a53b23d..c436f80 100644 --- a/h2_playermanager/src/main/resources/sqls/create_tables.sql +++ b/h2_playermanager/src/main/resources/sqls/create_tables.sql @@ -10,5 +10,5 @@ CREATE TABLE IF NOT EXISTS players ( location_world VARCHAR(64) NOT NULL ); -CREATE INDEX idx_players_uuid ON players(uuid); -CREATE INDEX idx_players_name ON players(name); \ No newline at end of file +CREATE INDEX IF NOT EXISTS idx_players_uuid ON players(uuid); +CREATE INDEX IF NOT EXISTS idx_players_name ON players(name); \ No newline at end of file