SQLite sqldiff Tool and Column Removal: Why ALTER TABLE DROP COLUMN Is Not Used
Understanding SQLite’s sqldiff Behavior with Column Removal The core issue revolves around the behavior of SQLite’s sqldiff tool when comparing two databases where one database has a table with an additional column compared to the other. Instead of generating an ALTER TABLE DROP COLUMN statement to remove the extra column, sqldiff opts for a more…