bytes should be a blob.

Change-Id: I8bbf6aab8ec67d60cb6ac47cd273aec8814d2d6a
This commit is contained in:
Nick Kralevich
2010-10-11 15:22:58 -07:00
parent 3c72deb3f4
commit 55fe78df44

View File

@@ -37,7 +37,7 @@ public class TagDBHelper extends SQLiteOpenHelper {
private static final String NDEF_MSG = "create table NdefMessage ("
+ "_id INTEGER NOT NULL, "
+ "bytes TEXT NOT NULL, " // TODO: This should be a blob
+ "bytes BLOB NOT NULL, "
+ "date TEXT NOT NULL, "
+ "PRIMARY KEY(_id)"
+ ")";