From 44e1e8fd83ecf7cb8c60cf9789e186412a64ef44 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 7 Jul 2003 13:20:29 +0000 Subject: [PATCH] =?UTF-8?q?remplac=E9=20par=200.1.5-0.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/migration/0.1.5-0.1.6.sql | 46 --------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 mysql/migration/0.1.5-0.1.6.sql diff --git a/mysql/migration/0.1.5-0.1.6.sql b/mysql/migration/0.1.5-0.1.6.sql deleted file mode 100644 index 2cedd6858b3..00000000000 --- a/mysql/migration/0.1.5-0.1.6.sql +++ /dev/null @@ -1,46 +0,0 @@ - --- --- Mise à jour de la version 0.1.5 à 0.1.6 --- - -create table llx_notify_def -( - rowid integer AUTO_INCREMENT PRIMARY KEY, - tms timestamp, - datec date, -- date de paiement - fk_action integer NOT NULL, - fk_soc integer NOT NULL, - fk_contact integer NOT NULL -); - -create table llx_notify -( - rowid integer AUTO_INCREMENT PRIMARY KEY, - tms timestamp, - daten datetime, -- date de la notification - fk_action integer NOT NULL, - fk_contact integer NOT NULL, - objet_type enum('ficheinter','facture','propale'), - objet_id integer NOT NULL -); - - -create table llx_action_def -( - rowid integer NOT NULL PRIMARY KEY, - tms timestamp, - titre varchar(255) NOT NULL, - description text, - objet_type enum('ficheinter','facture','propale') -); - - -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,'Validation facture','Déclenché lors de la validation d\'une facture','facture'); - -create table llx_propal_model_pdf -( - nom varchar(50) PRIMARY KEY, - libelle varchar(255), - description text -);