Alright, well I find a solution to my problem with a bit of SQL language tweaking. Apparently the issue deals with my MySQL version, but all I had to do was make a simple edit changing ‘TYPE’ to ‘ENGINE’.
So the line:
) TYPE = MYISAM DEFAULT CHARACTER SET 'utf8';
becomes:
) ENGINE = MYISAM DEFAULT CHARACTER SET 'utf8';
I hope this helps those who encounter the same problem.
Cheers.
Alright, well I find a solution to my problem with a bit of SQL language tweaking. Apparently the issue deals with my MySQL version, but all I had to do was make a simple edit changing ‘TYPE’ to ‘ENGINE’.
So the line:
) TYPE = MYISAM DEFAULT CHARACTER SET 'utf8';
becomes:
) ENGINE = MYISAM DEFAULT CHARACTER SET 'utf8';
I hope this helps those who encounter the same problem.
Cheers.