moved migration directory to db, fix sync records

This commit is contained in:
azivner
2018-01-28 21:00:54 -05:00
parent 75878c80a8
commit 9a0c2b6bcd
77 changed files with 20 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
DROP TABLE recent_notes;
CREATE TABLE `recent_notes` (
`note_path` TEXT NOT NULL PRIMARY KEY,
`date_accessed` INTEGER NOT NULL ,
is_deleted INT
);