Signed-off-by: lilium-saber <WR364999428@hotmail.com>
master
lilium-saber 2 years ago
parent 5637289a56
commit 9dc6c71e46

@ -210,6 +210,14 @@ public class Notes { // 定义类,给模块的其他类提供变量定义
*/
public static final String LOCKED = "locked"; // 锁定状态 ****
/*
* The password
* <P>
* Type : TEXT
* </P>
*/
public static final String PASSWORD = "password"; // 密码 *****
/*
* The picture
* <P>

@ -63,6 +63,7 @@ public class NotesDatabaseHelper extends SQLiteOpenHelper { // 该类为便签SQ
NoteColumns.VERSION + " INTEGER NOT NULL DEFAULT 0" +
NoteColumns.LOCKED + " INTEGER NOT NULL DEFAULT 0" +
NoteColumns.PASSWORD + " TEXT NOT NULL DEFAULT ''," +
NoteColumns.PICTURE + " TEXT NOT NULL DEFAULT ''," +
")";

Loading…
Cancel
Save