Crud checkbox

Hi,

what kind of column type should I use if I want checkbox from crud for true/false column. When I`ve used boolean type I have simple input box.

My code:



create table page


(


   `id` int(10) unsigned NOT NULL auto_increment,


   `published` boolean,


   PRIMARY KEY (id)


);


tinyint(1) default (0)

Ok, but this not generate checkbox :(