ka215 / cdbt

Custom DataBase Tables plugin is for WordPress
25 stars 8 forks source link

"Bool" datatype sql generation incorrect #4

Open kraln opened 9 years ago

kraln commented 9 years ago

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,

ka215 commented 9 years ago

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.