Add field to define picto to use for status
This commit is contained in:
parent
83e4fe5d95
commit
a94121a8c5
@ -609,4 +609,6 @@ ALTER TABLE llx_actioncomm ADD COLUMN email_to varchar(256);
|
|||||||
ALTER TABLE llx_actioncomm ADD COLUMN errors_to varchar(256);
|
ALTER TABLE llx_actioncomm ADD COLUMN errors_to varchar(256);
|
||||||
ALTER TABLE llx_actioncomm ADD COLUMN recurid varchar(128);
|
ALTER TABLE llx_actioncomm ADD COLUMN recurid varchar(128);
|
||||||
|
|
||||||
|
ALTER TABLE llx_stcomm ADD COLUMN picto varchar(128);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
-- ========================================================================
|
-- ========================================================================
|
||||||
-- Copyright (C) 2001-2002,2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
-- Copyright (C) 2001-2002,2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
-- Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
-- Copyright (C) 2004-2015 Laurent Destailleur <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
|
||||||
@ -22,6 +22,7 @@ create table llx_c_stcomm
|
|||||||
id integer PRIMARY KEY,
|
id integer PRIMARY KEY,
|
||||||
code varchar(12) NOT NULL,
|
code varchar(12) NOT NULL,
|
||||||
libelle varchar(30),
|
libelle varchar(30),
|
||||||
|
picto varchar(128),
|
||||||
active tinyint default 1 NOT NULL
|
active tinyint default 1 NOT NULL
|
||||||
)ENGINE=innodb;
|
)ENGINE=innodb;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user