From dd6ac8411ca06aed64ebdf6e2244bfd838a7379e Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 7 Jul 2003 09:12:43 +0000 Subject: [PATCH] Nouvelle version --- mysql/migration/0.1.5-0.1.6.sql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mysql/migration/0.1.5-0.1.6.sql b/mysql/migration/0.1.5-0.1.6.sql index 9a12dd0814e..9c0d4f52c5c 100644 --- a/mysql/migration/0.1.5-0.1.6.sql +++ b/mysql/migration/0.1.5-0.1.6.sql @@ -30,8 +30,10 @@ create table llx_action_def rowid integer NOT NULL PRIMARY KEY, tms timestamp, titre varchar(255) NOT NULL, - description text + description text, + objet_type enum('ficheinter','facture','propale') ); -insert into llx_action_def (rowid,titre,description) VALUES (1,'Validation fiche intervention','Déclenché lors de la validation d\'une fiche d\'intervention'); \ No newline at end of file +insert into llx_action_def (rowid,titre,description,objet_type) VALUES (1,'Validation fiche intervention','Déclenché lors de la validation d\'une fiche d\'intervention','ficheinter'); +insert into llx_action_def (rowid,titre,description,objet_type) VALUES (2,'Cloture facture','Déclenché lors de la cloture d\'une fiche d\'intervention','facture');