|
Same things tinyint or TINYINT(1) => NO smallint => YES if llx_mytable.my_column varchar(30) (or int or whatever) allow null and we want to disallow null ALTER TABLE llx_mytable MODIFY COLUMN my_column varchar(30) NOT NULL => NO ALTER TABLE llx_mytable MODIFY COLUMN my_column varchar(30) NOT NULL DEFAULT '' => YES We can't specified NOT NULL on MODIFY COLUMN without specified DEFAULT values https://github.com/Dolibarr/dolibarr/pull/3918 Regards Florian Henry +33 6 03 76 48 07 [email protected] http://www.open-concept.pro Twitter : @_Open_Concept_ Google+ : https://www.google.com/+Open-conceptPro Le 06/11/2015 11:03, Florian HENRY a
écrit :
Hello All, |
_______________________________________________ Dolibarr-dev mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/dolibarr-dev
