Add ip into ticket table
This commit is contained in:
parent
2c1833fedf
commit
c4eccd262d
@ -57,3 +57,7 @@ ALTER TABLE llx_facture_fourn ADD COLUMN close_missing_amount double(24, 8) afte
|
|||||||
ALTER TABLE llx_adherent_type ADD COLUMN caneditamount integer DEFAULT 0 AFTER amount;
|
ALTER TABLE llx_adherent_type ADD COLUMN caneditamount integer DEFAULT 0 AFTER amount;
|
||||||
|
|
||||||
ALTER TABLE llx_inventory ADD COLUMN categories_product VARCHAR(255) DEFAULT NULL AFTER fk_product;
|
ALTER TABLE llx_inventory ADD COLUMN categories_product VARCHAR(255) DEFAULT NULL AFTER fk_product;
|
||||||
|
|
||||||
|
ALTER TABLE llx_ticket ADD COLUMN ip varchar(250);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -40,6 +40,7 @@ CREATE TABLE llx_ticket
|
|||||||
date_close datetime,
|
date_close datetime,
|
||||||
notify_tiers_at_create tinyint,
|
notify_tiers_at_create tinyint,
|
||||||
email_msgid varchar(255), -- if ticket is created by email collector, we store here MSG ID
|
email_msgid varchar(255), -- if ticket is created by email collector, we store here MSG ID
|
||||||
|
ip varchar(250),
|
||||||
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||||
import_key varchar(14)
|
import_key varchar(14)
|
||||||
)ENGINE=innodb;
|
)ENGINE=innodb;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user