Add field to define picto to use for status

This commit is contained in:
Laurent Destailleur 2015-05-12 09:42:14 +02:00
parent 83e4fe5d95
commit a94121a8c5
2 changed files with 4 additions and 1 deletions

View File

@ -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 recurid varchar(128);
ALTER TABLE llx_stcomm ADD COLUMN picto varchar(128);

View File

@ -1,6 +1,6 @@
-- ========================================================================
-- 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
-- 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,
code varchar(12) NOT NULL,
libelle varchar(30),
picto varchar(128),
active tinyint default 1 NOT NULL
)ENGINE=innodb;