trilium/bin/dump.sql

19 lines
463 B
MySQL
Raw Normal View History

2018-08-29 05:36:28 +08:00
.mode insert branches
.out db/main_branches.sql
2018-08-30 03:36:42 +08:00
select * from branches where isDeleted = 0;
2018-08-29 05:36:28 +08:00
.mode insert notes
.out db/main_notes.sql
2018-08-30 03:36:42 +08:00
select * from notes where isDeleted = 0;
2018-08-29 05:36:28 +08:00
.mode insert images
.out db/main_images.sql
2018-08-30 03:36:42 +08:00
select * from images where isDeleted = 0;
2018-08-29 05:36:28 +08:00
.mode insert note_images
.out db/main_note_images.sql
2018-08-30 03:36:42 +08:00
select * from note_images where isDeleted = 0;
2018-08-29 05:39:12 +08:00
.mode insert attributes
.out db/main_attributes.sql
2018-08-30 03:36:42 +08:00
select * from attributes where isDeleted = 0;