nouvelle version

This commit is contained in:
Rodolphe Quiedeville 2003-06-22 09:47:29 +00:00
parent 8b722aadbe
commit e79e8f1695

View File

@ -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,