I've got a table with
`terms_of_payment` enum('0','1') NOT NULL DEFAULT '0' COMMENT ''
I run
ALTER TABLE `customer`
CHANGE `terms_of_payment` `terms_of_payment` TINYINT( 1 )
NOT NULL DEFAULT 0 COMMENT '';
and I found all my customers (with '0' value) set to 1 when I'm waiting 0
Could you explain me, what's the trouble, please ?
Bye