MySQL upgrade issue

The new version of MySQL is configured by default to strict interpretation of SQL according to the schema. This means that if you have a column defined as NOT NULL but there is no default value set, an error will occur.

Our database schema had some columns like this and I’ve fixed them by adding defaults, but still have some left to investigate.