From e79e8f1695a8b623e4b7f94533bd450469742202 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Sun, 22 Jun 2003 09:47:29 +0000 Subject: [PATCH] nouvelle version --- mysql/mysql.sql | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/mysql/mysql.sql b/mysql/mysql.sql index bb0a80c2f50..5ba78a28db1 100644 --- a/mysql/mysql.sql +++ b/mysql/mysql.sql @@ -253,6 +253,17 @@ create table llx_fichinter UNIQUE INDEX (ref) ); +create table llx_soc_events +( + rowid integer AUTO_INCREMENT PRIMARY KEY, -- public id + fk_soc int NOT NULL, -- + dateb datetime NOT NULL, -- begin date + datee datetime NOT NULL, -- end date + title varchar(100) NOT NULL, + url varchar(255), + description text +); + create table llx_const ( rowid integer AUTO_INCREMENT PRIMARY KEY, @@ -280,17 +291,6 @@ create table llx_compta ); -create table soc_events -( - rowid integer AUTO_INCREMENT PRIMARY KEY, -- public id - fk_soc int NOT NULL, -- - dateb datetime NOT NULL, -- begin date - datee datetime NOT NULL, -- end date - title varchar(100) NOT NULL, - url varchar(255), - description text -); - create table llx_compta_account ( rowid integer AUTO_INCREMENT PRIMARY KEY,