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.
This commit is contained in:
Eric House 2019-11-03 13:43:54 +00:00
parent 56fc359f42
commit f8a84cbe0a

View file

@ -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 );