Fix: increase size for external modules name

This commit is contained in:
Regis Houssin 2011-08-29 14:45:46 +02:00
parent 91937cd2f2
commit 19d2242ae7
2 changed files with 7 additions and 3 deletions

View File

@ -484,3 +484,6 @@ ALTER TABLE llx_don ADD phone_mobile varchar(24) after email;
ALTER TABLE llx_don ADD phone varchar(24) after email; ALTER TABLE llx_don ADD phone varchar(24) after email;
ALTER TABLE llx_user ADD civilite varchar(6) after entity; ALTER TABLE llx_user ADD civilite varchar(6) after entity;
ALTER TABLE llx_element_element MODIFY sourcetype varchar(32) NOT NULL;
ALTER TABLE llx_element_element MODIFY 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 <regis@dolibarr.fr>
-- --
-- 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
@ -24,8 +25,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;