sqlectron / sqlectron-core

https://sqlectron.github.io/
MIT License
221 stars 69 forks source link

fix createTable test for mysql 8 #86

Closed MasterOdin closed 4 years ago

MasterOdin commented 4 years ago

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