am 55fe78df: bytes should be a blob.

Merge commit '55fe78df445c72e2eebf1e07a704432b8b2c2f58' into gingerbread-plus-aosp

* commit '55fe78df445c72e2eebf1e07a704432b8b2c2f58':
  bytes should be a blob.
This commit is contained in:
Nick Kralevich
2010-10-11 17:25:55 -07:00
committed by Android Git Automerger

View File

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