X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=gameserver_db.h;h=fe39931af843ae30b3715b6192367193dedc489a;hb=bececcbb7b2e886e72425e7c070e1fdc3aa126dc;hp=b7f3360f52899d45cc27e8631b1a0a4fc3da8348;hpb=f6bc1299d5b30e1aba87e6ce084bcd7eed22975f;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/gameserver_db.h b/gameserver_db.h index b7f3360..fe39931 100644 --- a/gameserver_db.h +++ b/gameserver_db.h @@ -5,7 +5,6 @@ #include "vg/vg_mem_queue.h" #include "network_common.h" #include "dep/sqlite3/sqlite3.h" -#include "highscores.h" #include #include @@ -155,7 +154,7 @@ static int db_writeusertime( char table[DB_TABLE_UID_MAX], u64 steamid, vg_strnull( &q, buf, 512 ); vg_strcat( &q, "CREATE TABLE IF NOT EXISTS \n \"" ); vg_strcat( &q, table ); - vg_strcat( &q, "\"\n (steamid BIGINT PRIMARY KEY, time INT);" ); + vg_strcat( &q, "\"\n (steamid BIGINT UNIQUE, time INT);" ); if( !vg_strgood(&q) ) return 0; vg_str str;