X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=gameserver_db.h;h=55a4f4775cf80cc7df33d5028d8a05580c64555b;hb=6e6c7f31b8f17af3814727109e48fc6f85ef04b1;hp=b7f3360f52899d45cc27e8631b1a0a4fc3da8348;hpb=f6bc1299d5b30e1aba87e6ce084bcd7eed22975f;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/gameserver_db.h b/gameserver_db.h index b7f3360..55a4f47 100644 --- a/gameserver_db.h +++ b/gameserver_db.h @@ -155,7 +155,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;