adamfranco2012
Results
2
comments of
adamfranco2012
We are using an existing project where the MySQL instance allows for dates to be like “0000-00-00 00:00:00” instead of null. We are using MySQL 5.6 which allows this and...
``` CREATE TABLE `test_schema` ( `id` int(11) NOT NULL AUTO_INCREMENT, `expiration_date` datetime(3) DEFAULT NULL, `last_update_UTC` datetime(3) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; ``` We also disable...