cdbt
cdbt copied to clipboard
"Bool" datatype sql generation incorrect
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,
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.