Skip to content
Snippets Groups Projects
Commit 8901b99e authored by Maxime Kohlhaas's avatar Maxime Kohlhaas
Browse files

Fix import model not correctly saved #5185

parent f07559a7
No related branches found
No related tags found
No related merge requests found
......@@ -610,3 +610,4 @@ INSERT INTO llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) VALUES (14
-- VMYSQL4.1 ALTER TABLE llx_c_type_resource CHANGE COLUMN rowid rowid integer NOT NULL AUTO_INCREMENT;
ALTER TABLE llx_import_model MODIFY COLUMN type varchar(50);
\ No newline at end of file
......@@ -23,6 +23,6 @@ create table llx_import_model
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_user integer DEFAULT 0 NOT NULL,
label varchar(50) NOT NULL,
type varchar(20) NOT NULL,
type varchar(50) NOT NULL,
field text NOT NULL
)ENGINE=innodb;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment