mirror of
https://github.com/dnote/dnote
synced 2026-03-15 06:55:49 +01:00
Restructure packages to reduce duplication
This commit is contained in:
parent
5feed29df7
commit
d476fa02f8
15 changed files with 228 additions and 131 deletions
|
|
@ -34,3 +34,7 @@ CREATE TRIGGER notes_after_update AFTER UPDATE ON notes BEGIN
|
|||
INSERT INTO note_fts(note_fts, rowid, body) VALUES ('delete', old.rowid, old.body);
|
||||
INSERT INTO note_fts(rowid, body) VALUES (new.rowid, new.body);
|
||||
END;
|
||||
|
||||
-- Migration version data.
|
||||
INSERT INTO system (key, value) VALUES ('schema', 14);
|
||||
INSERT INTO system (key, value) VALUES ('remote_schema', 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue