ka215/cdbt

"Bool" datatype sql generation incorrect

Opened this issue · 1 comments

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.