I have a table with
`terms_of_payment` enum('0','1') NOT NULL DEFAULT '0' COMMENT ''
I launched
ALTER TABLE `customer` CHANGE `terms_of_payment` `terms_of_payment` TINYINT( 1 ) NOT NULL DEFAULT 0 COMMENT '';
and I found that all my clients (with "0") are set to 1 when I wait for 0
Could you explain to me what problem please?
Bye
source share