ketr.photos/server/db/MODIFY.md
James Ketrenos e5a55de73c Improved face dropping from photopanel
Signed-off-by: James Ketrenos <james_git@ketrenos.com>
2023-01-28 20:19:52 -08:00

607 B

Dump schema

cat << EOF | sqlite3 db/photos.db > photos.schema
.schema
EOF

Edit schema

nano photos.schema

Backup database

cp db/photos.db photos.db.bk

For the table you want to modify

Backup the table

cat << EOF | sqlite3 db/photos.db
.output faces.dump
.dump faces
.quit
EOF

Drop the table

cat << EOF | sqlite3 db/photos.db
drop table faces
EOF

Create the table with the modified schema

cat photos.schema | sqlite3 db/photos.db

Re-populate the table

cat faces.dump | sqlite3 db/photos.db