Fix: increase size for external module name
This commit is contained in:
parent
45f6f19ddd
commit
586facb724
@ -11,4 +11,7 @@
|
|||||||
|
|
||||||
UPDATE llx_c_paper_format SET active=1 WHERE active=0;
|
UPDATE llx_c_paper_format SET active=1 WHERE active=0;
|
||||||
|
|
||||||
ALTER TABLE llx_product_fournisseur_price ADD COLUMN fk_availability integer AFTER fk_product_fournisseur;
|
ALTER TABLE llx_product_fournisseur_price ADD COLUMN fk_availability integer AFTER fk_product_fournisseur;
|
||||||
|
|
||||||
|
ALTER TABLE llx_element_element MODIFY COLUMN sourcetype varchar(32) NOT NULL;
|
||||||
|
ALTER TABLE llx_element_element MODIFY COLUMN targettype varchar(32) NOT NULL;
|
||||||
@ -1,5 +1,6 @@
|
|||||||
-- ============================================================================
|
-- ============================================================================
|
||||||
-- Copyright (C) 2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
-- Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
-- Copyright (C) 2011 Regis Houssin <eldy@users.sourceforge.net>
|
||||||
--
|
--
|
||||||
-- This program is free software; you can redistribute it and/or modify
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
-- it under the terms of the GNU General Public License as published by
|
-- it under the terms of the GNU General Public License as published by
|
||||||
@ -23,8 +24,8 @@ create table llx_element_element
|
|||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
fk_source integer NOT NULL,
|
fk_source integer NOT NULL,
|
||||||
sourcetype varchar(16) NOT NULL,
|
sourcetype varchar(32) NOT NULL,
|
||||||
fk_target integer NOT NULL,
|
fk_target integer NOT NULL,
|
||||||
targettype varchar(16) NOT NULL
|
targettype varchar(32) NOT NULL
|
||||||
) ENGINE=innodb;
|
) ENGINE=innodb;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user