Notes/bin/dump.sql

19 lines
463 B
MySQL
Raw Normal View History

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