Fixes the createTable test under mysql8. The display width for integers (e.g. int(11)) was deprecated in MySQL 8 as it did not do what people thought it did (limit width of the column) and most software had it's own mechanisms for appropriately displaying the information which is what the display width was supposed to do.
Fixes the createTable test under mysql8. The display width for integers (e.g.
int(11)
) was deprecated in MySQL 8 as it did not do what people thought it did (limit width of the column) and most software had it's own mechanisms for appropriately displaying the information which is what the display width was supposed to do.Closes #78