2
0
forked from Wavyzz/dolibarr

Fix field name and length (database portabilit)

This commit is contained in:
Laurent Destailleur
2017-12-28 11:16:27 +01:00
parent 6676178435
commit ce680af357
19 changed files with 29 additions and 71 deletions

View File

@@ -1,6 +1,6 @@
-- ============================================================================
-- Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
-- Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
--
-- This program is free software; you can redistribute it and/or modify
@@ -22,7 +22,7 @@ create table llx_user_param
(
fk_user integer NOT NULL,
entity integer DEFAULT 1 NOT NULL, -- multi company id
param varchar(255) NOT NULL,
param varchar(180) NOT NULL,
value text NOT NULL
)ENGINE=innodb;