mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-23 07:27:22 +01:00
fix misspelled column type INTEGER
I have no idea how this worked or how old. Might require a new DB version? Needs testing.
This commit is contained in:
parent
94b00b1c7c
commit
36bf92e8e5
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ public class DBHelper extends SQLiteOpenHelper {
|
||||||
{ DICTNAME, "TEXT" }
|
{ DICTNAME, "TEXT" }
|
||||||
,{ LOC, "UNSIGNED INTEGER(1)" }
|
,{ LOC, "UNSIGNED INTEGER(1)" }
|
||||||
,{ WORDCOUNTS, "TEXT" }
|
,{ WORDCOUNTS, "TEXT" }
|
||||||
,{ ITERMIN, "INTEGRE(4)" }
|
,{ ITERMIN, "INTEGER(4)" }
|
||||||
,{ ITERMAX, "INTEGER(4)" }
|
,{ ITERMAX, "INTEGER(4)" }
|
||||||
,{ ITERPOS, "INTEGER" }
|
,{ ITERPOS, "INTEGER" }
|
||||||
,{ ITERTOP, "INTEGER" }
|
,{ ITERTOP, "INTEGER" }
|
||||||
|
|
Loading…
Add table
Reference in a new issue