mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
comment out unused column
This commit is contained in:
parent
bda0d51c7f
commit
da9c7a1afd
2 changed files with 3 additions and 3 deletions
|
@ -60,7 +60,7 @@ public class DBHelper extends SQLiteOpenHelper {
|
|||
public static final String INVITEID = "INVITEID";
|
||||
public static final String RELAYID = "RELAYID";
|
||||
public static final String SEED = "SEED";
|
||||
public static final String SMSPHONE = "SMSPHONE";
|
||||
public static final String SMSPHONE = "SMSPHONE"; // unused -- so far
|
||||
public static final String LASTMOVE = "LASTMOVE";
|
||||
public static final String GROUPID = "GROUPID";
|
||||
|
||||
|
@ -100,7 +100,7 @@ public class DBHelper extends SQLiteOpenHelper {
|
|||
,SEED, "INTEGER"
|
||||
,DICTLANG, "INTEGER"
|
||||
,DICTLIST, "TEXT"
|
||||
,SMSPHONE, "TEXT"
|
||||
,SMSPHONE, "TEXT" // unused
|
||||
,SCORES, "TEXT"
|
||||
,CHAT_HISTORY, "TEXT"
|
||||
,GAMEID, "INTEGER"
|
||||
|
|
|
@ -129,7 +129,7 @@ public class DBUtils {
|
|||
DBHelper.TURN, DBHelper.GIFLAGS,
|
||||
DBHelper.CONTYPE, DBHelper.SERVERROLE,
|
||||
DBHelper.ROOMNAME, DBHelper.RELAYID,
|
||||
DBHelper.SMSPHONE, DBHelper.SEED,
|
||||
/*DBHelper.SMSPHONE,*/ DBHelper.SEED,
|
||||
DBHelper.DICTLANG, DBHelper.GAMEID,
|
||||
DBHelper.SCORES, DBHelper.HASMSGS,
|
||||
DBHelper.LASTPLAY_TIME, DBHelper.REMOTEDEVS,
|
||||
|
|
Loading…
Reference in a new issue