mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
get rid of columns I don't plan to use yet -- can always add later.
This commit is contained in:
parent
693310bdc7
commit
a0bf3405b8
1 changed files with 0 additions and 3 deletions
|
@ -78,7 +78,6 @@ public class DBHelper extends SQLiteOpenHelper {
|
|||
+ NUM_PLAYERS + " INTEGER,"
|
||||
+ PLAYERS + " TEXT,"
|
||||
+ GAME_OVER + " INTEGER,"
|
||||
+ IN_USE + " INTEGER," // really a boolean
|
||||
|
||||
+ SERVERROLE + " INTEGER,"
|
||||
+ CONTYPE + " INTEGER,"
|
||||
|
@ -131,8 +130,6 @@ public class DBHelper extends SQLiteOpenHelper {
|
|||
" ADD COLUMN " + GIFLAGS + " INTEGER;" );
|
||||
db.execSQL( "ALTER TABLE " + TABLE_NAME_SUM +
|
||||
" ADD COLUMN " + CHAT_HISTORY + " TEXT;" );
|
||||
db.execSQL( "ALTER TABLE " + TABLE_NAME_SUM +
|
||||
" ADD COLUMN " + IN_USE + " INTEGER;" );
|
||||
} else {
|
||||
db.execSQL( "DROP TABLE " + TABLE_NAME_SUM + ";" );
|
||||
if ( oldVersion >= 6 ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue