I would like to add another column to a table in my existing SQLite database.
Is this possible, or is there something specific I need to do to upgrade it?
If so, how do I go about doing this?
SQLiteOpenHelper then I would recommend to use onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion).Consider using an ALTER TABLE script this guide should give you all you need, http://www.sqlite.org/lang_altertable.html