mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
add column for tracking xlation source
This commit is contained in:
parent
437e2024cc
commit
227a25e259
1 changed files with 2 additions and 0 deletions
|
@ -95,6 +95,7 @@ public class DBHelper extends SQLiteOpenHelper {
|
|||
|
||||
public static final String KEY = "KEY";
|
||||
public static final String LOCALE = "LOCALE";
|
||||
public static final String BLESSED = "BLESSED";
|
||||
public static final String XLATION = "XLATION";
|
||||
|
||||
|
||||
|
@ -174,6 +175,7 @@ public class DBHelper extends SQLiteOpenHelper {
|
|||
private static final String[][] s_locSchema = {
|
||||
{ KEY, "TEXT" }
|
||||
,{ LOCALE, "TEXT(5)" }
|
||||
,{ BLESSED, "INTEGER(1)" }
|
||||
,{ XLATION, "TEXT" }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue