Fix default value

This commit is contained in:
Laurent Destailleur 2021-07-16 12:44:15 +02:00
parent ce27feda84
commit 501bc853af

View File

@ -25,7 +25,7 @@ create table llx_object_lang
fk_object integer DEFAULT 0 NOT NULL, fk_object integer DEFAULT 0 NOT NULL,
type_object varchar(32) NOT NULL, -- value found into $object->element: 'thirdparty', 'contact', '...' type_object varchar(32) NOT NULL, -- value found into $object->element: 'thirdparty', 'contact', '...'
property varchar(32) NOT NULL, -- name of property property varchar(32) NOT NULL, -- name of property
lang varchar(5) DEFAULT 0 NOT NULL, lang varchar(5) DEFAULT '' NOT NULL,
value text, value text,
import_key varchar(14) DEFAULT NULL import_key varchar(14) DEFAULT NULL
)ENGINE=innodb; )ENGINE=innodb;