We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A problem with AUTO INCREMENT:
This
CREATE TABLE IF NOT EXISTS `table_name` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, ... PRIMARY KEY (`id`) );
Should become
CREATE TABLE IF NOT EXISTS `table_name` ( `id` INTEGER PRIMARY KEY AUTOINCREMENT, ... );
Not
CREATE TABLE IF NOT EXISTS `table_name` ( `id` INTEGER NOT NULL, ... PRIMARY KEY (`id`) );
The text was updated successfully, but these errors were encountered:
Hi! I am so sorry that I took this long to answer. I'll make sure GitHub notify me when someone creates an issue.
I think the best way to improve the tool is to create tests. I'll be doing that in the near future but I can't guarantee when.
I appreciate your submission. Thank you! <3
Sorry, something went wrong.
No branches or pull requests
A problem with AUTO INCREMENT:
This
Should become
Not
The text was updated successfully, but these errors were encountered: