[tbd]
-- fix the MODIFIED column so it defaults to a sensible value
-- (this column is deprecated but still fails when the defaults are used in inserts)
ALTER TABLE merchants MODIFY COLUMN MODIFIED timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;
-- (this column is deprecated but still fails when the old string defaults are used in inserts)
ALTER TABLE merchants MODIFY COLUMN MODIFIED timestamp NULL;
UPDATE merchants SET MODIFIED = CREATED where MODIFIED = '0000-00-00 00:00:00';
+END_SRC
[tbd]