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
The table editor creates the following SQL for bool typed column: correct_answer bool(1) NOT NULL DEFAULT '0',
correct_answer
This fails.
The correct SQL would be:
correct_answer bool NOT NULL DEFAULT 0,
The text was updated successfully, but these errors were encountered:
Thanks for pointing out plugin issue. And, I am sorry to have neglect long.
I would like fix a this bug in the next version.
Sorry, something went wrong.
No branches or pull requests
The table editor creates the following SQL for bool typed column:
correct_answer
bool(1) NOT NULL DEFAULT '0',This fails.
The correct SQL would be:
correct_answer
bool NOT NULL DEFAULT 0,The text was updated successfully, but these errors were encountered: