Skip to content
Snippets Groups Projects
Commit 586facb7 authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: increase size for external module name

parent 45f6f19d
Branches
No related tags found
No related merge requests found
...@@ -12,3 +12,6 @@ ...@@ -12,3 +12,6 @@
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;
\ No newline at end of file
-- ============================================================================ -- ============================================================================
-- 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 ...@@ -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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment