add timestamp fields to DB as long as the format's changing

This commit is contained in:
eehouse 2010-05-08 15:30:22 +00:00
parent 0e3411ecd4
commit 9d86ba9a99

View file

@ -42,6 +42,10 @@ public class DBHelper extends SQLiteOpenHelper {
public static final String CONTYPE = "CONTYPE";
public static final String ROOMNAME = "ROOMNAME";
public static final String SMSPHONE = "SMSPHONE";
// not used yet
public static final String CREATE_TIME = "CREATE_TIME";
// not used yet
public static final String LASTPLAY_TIME = "LASTPLAY_TIME";
public DBHelper( Context context )
@ -63,6 +67,9 @@ public class DBHelper extends SQLiteOpenHelper {
+ SCORES + " TEXT,"
+ GAMEID + " INTEGER,"
+ CREATE_TIME + " INTEGER,"
+ LASTPLAY_TIME + " INTEGER,"
+ SNAPSHOT + " BLOB"
+ ");" );
}