This commit is contained in:
Rodolphe Quiedeville 2002-04-29 21:14:49 +00:00
parent 8a38142a02
commit 5d8e2942df
6 changed files with 73 additions and 0 deletions

13
mysql/tables/c_pays.sql Normal file
View File

@ -0,0 +1,13 @@
-- ========================================================================
-- $Id$
-- $Source$
-- ========================================================================
create table c_pays
(
id integer PRIMARY KEY,
libelle varchar(25),
code char(2) NOT NULL
);

View File

@ -0,0 +1,11 @@
-- ===================================================================
-- $Id$
-- $Source$
-- ===================================================================
create table c_propalst
(
id smallint PRIMARY KEY,
label varchar(30)
);

11
mysql/tables/c_stcomm.sql Normal file
View File

@ -0,0 +1,11 @@
-- ========================================================================
-- $Id$
-- $Source$
-- ========================================================================
create table c_stcomm
(
id integer PRIMARY KEY,
libelle varchar(30)
);

10
mysql/tables/c_typent.sql Normal file
View File

@ -0,0 +1,10 @@
-- ========================================================================
-- $Id$
-- $Source$
-- ========================================================================
create table c_typent
(
id integer PRIMARY KEY,
libelle varchar(30)
);

View File

@ -0,0 +1,15 @@
-- ========================================================================
-- $Id$
-- $Source$
-- ========================================================================
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
);

View File

@ -0,0 +1,13 @@
-- ========================================================================
-- SGBD : PostgreSQL 6.5.3
-- $Id$
-- $Source$
-- ========================================================================
create table socstatutlog
(
id serial,
datel datetime,
fk_soc integer,
fk_statut integer,
author varchar(30)
);