From 5df79a21e63e4d14af26794ab1d52d4ad1c8fc79 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 11 Sep 2006 10:13:58 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20cr=E9ation=20de=20la=20table=20llx=5Fac?= =?UTF-8?q?countingdebcred=20dans=20le=20fichier=20de=20migration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/migration/2.0.0-2.1.0.sql | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index c1df8bcd85e..81ebad1b369 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -427,4 +427,12 @@ ALTER TABLE llx_categorie_product ADD PRIMARY KEY (fk_categorie, fk_product); alter table llx_product modify label varchar(255) NOT NULL; alter table llx_product modify description text; alter table llx_product_det modify label varchar(255) NOT NULL; -alter table llx_product_det modify description text; \ No newline at end of file +alter table llx_product_det modify description text; + +create table llx_accountingdebcred +( + fk_transaction integer NOT NULL, + fk_account integer NOT NULL, + amount real NOT NULL, + direction varchar(1) NOT NULL +)type=innodb; \ No newline at end of file