From e57cfb6d45827351924c876d9da35b8f547b64e7 Mon Sep 17 00:00:00 2001 From: DmitriyMX Date: Sun, 16 Sep 2018 18:15:44 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=B8=D0=BD=D0=B4=D0=B5=D0=BA=D1=81=D0=BE=D0=B2?= =?UTF-8?q?,=20=D0=B5=D1=81=D0=BB=D0=B8=20=D0=BE=D0=BD=D0=B8=20=D0=BE?= =?UTF-8?q?=D1=82=D1=81=D1=83=D1=82=D1=81=D1=82=D0=B2=D1=83=D1=8E=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- h2_playermanager/src/main/resources/sqls/create_tables.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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