←back to thread

115 points graderjs | 2 comments | | HN request time: 0.555s | source
Show context
codenesium ◴[] No.25004913[source]
Is sqlite not diffable?
replies(3): >>25005043 #>>25005217 #>>25005391 #
1. simonw ◴[] No.25005391[source]
I wrote a tool that dumps a SQLite database out to disk as diffable JSON, precisely so you can easily record changes made to the database over time: https://github.com/simonw/sqlite-diffable

I have a demo of it running against my blog's database here: https://github.com/simonw/simonwillisonblog-backup

replies(1): >>25005974 #
2. jlelse ◴[] No.25005974[source]
Thanks for this! I am trying to integrate something similar into my custom CMS.