`effective_end_utc` timestamp NOT NULL COMMENT 'The UTC timestamp for when the target ceases to be in effect.',
This will end up giving me
ERROR 1067 (42000) at line 27: Invalid default value for 'effective_end_utc'
Base on other reponse, I have even set the mode to following at the begining of schema
SET GLOBAL SQL_MODE='ALLOW_INVALID_DATES'
Any idea whats going wrong?
effective_end_utctimestamp NOT NULLALLOW_INVALID_DATESonly applies to date(-time), not to timestamp.