table_migrator
table_migrator copied to clipboard
clarification of DELETE case
The docs say, regarding DELETE not being propegated, "In order to avoid this, use paranoid deletion, and update the column you are using to find changes appropriately."
My guess is that means set a deleted flag on the row instead of deleting the row, and be sure to update updated_at. Is that correct? Could the docs be clarified either way?