Initial
This commit is contained in:
parent
8a38142a02
commit
5d8e2942df
13
mysql/tables/c_pays.sql
Normal file
13
mysql/tables/c_pays.sql
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
-- ========================================================================
|
||||||
|
-- $Id$
|
||||||
|
-- $Source$
|
||||||
|
-- ========================================================================
|
||||||
|
|
||||||
|
create table c_pays
|
||||||
|
(
|
||||||
|
id integer PRIMARY KEY,
|
||||||
|
libelle varchar(25),
|
||||||
|
code char(2) NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
11
mysql/tables/c_propalst.sql
Normal file
11
mysql/tables/c_propalst.sql
Normal 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
11
mysql/tables/c_stcomm.sql
Normal 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
10
mysql/tables/c_typent.sql
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
-- ========================================================================
|
||||||
|
-- $Id$
|
||||||
|
-- $Source$
|
||||||
|
-- ========================================================================
|
||||||
|
|
||||||
|
create table c_typent
|
||||||
|
(
|
||||||
|
id integer PRIMARY KEY,
|
||||||
|
libelle varchar(30)
|
||||||
|
);
|
||||||
15
mysql/tables/soc_events.sql
Normal file
15
mysql/tables/soc_events.sql
Normal 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
|
||||||
|
);
|
||||||
13
mysql/tables/socstatutlog.sql
Normal file
13
mysql/tables/socstatutlog.sql
Normal 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)
|
||||||
|
);
|
||||||
Loading…
Reference in New Issue
Block a user