For any mysql users interested in turning off "NO*ZERO*DATE" for compatibility.
sudo mysql
SELECT @@sql_mode;
This will return the current sql mode. You'll want to turn off NO*ZERODATE, NO*ZERO*IN*DATE, and STRICTTRANSTABLES. These are enabled by default. To disable them, only include the other modes in the next step.
SET GLOBAL sql_mode = 'ONLY_FULL_GROUP_BY,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';
The default mysql modes also includes "NO*AUTO*CREATE_USER", but it wasn't enabled on my install so I didn't include it.
quit
sudo service mysql restart
You'll now have compatibility with mariadb while using mysql (alpha sorting didn't work for me until I clicked on the NAME heading on the clients page, but not a big deal). These changes can be reversed by going in reverse order.
Sources: