Subject: | Diffing for SQLite produces SQL that is not valid |
SQLite doesn't like ALTER TABLE statements like:
ALTER TABLE businesses ADD COLUMN url varchar(1024) NOT NULL
According to current sqlite docs:
ADD Column restrictions: If a NOT NULL constraint is specified, then
the column must have a default value other than NULL.
Diff should notice this and complain.