I have noticed that some versions of mysql, the code below needs a ";" at the end of each line while other versions work with a "," and the end of each line. At what version of mysql did that change take place?
$mySQL = "alter table users
add `username` varchar(20) not null;
add `location` varchar(100) not null;
";