From f8a84cbe0a7fe2d90e1e9a98b149bd12e6707c06 Mon Sep 17 00:00:00 2001 From: Eric House Date: Sun, 3 Nov 2019 13:43:54 +0000 Subject: [PATCH] adding missing DB field Can't upgrade a game if the field's missing so just add it. Adding a notion of versioning and upgrading isn't worth the effort. --- xwords4/linux/gamesdb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xwords4/linux/gamesdb.c b/xwords4/linux/gamesdb.c index a2b53e204..e80a4de8d 100644 --- a/xwords4/linux/gamesdb.c +++ b/xwords4/linux/gamesdb.c @@ -63,6 +63,7 @@ openGamesDB( const char* dbName ) ",ntotal INT(2)" ",nmissing INT(2)" ",lastMoveTime INT" + ",dupTimerExpires INT" ")"; result = sqlite3_exec( pDb, createGamesStr, NULL, NULL, NULL );