Fix: increase size for external module name

This commit is contained in:
Regis Houssin 2011-08-29 10:59:08 +00:00
parent 45f6f19ddd
commit 586facb724
2 changed files with 8 additions and 4 deletions

View File

@ -11,4 +11,7 @@
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;

View File

@ -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
-- 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,
fk_source integer NOT NULL,
sourcetype varchar(16) NOT NULL,
sourcetype varchar(32) NOT NULL,
fk_target integer NOT NULL,
targettype varchar(16) NOT NULL
targettype varchar(32) NOT NULL
) ENGINE=innodb;