From 9b9ba4836a381c8ebecb393b8fa6dfe3850c76c6 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 30 Jun 2003 14:17:30 +0000 Subject: [PATCH] nouveau fichier --- mysql/tables/llx_action_def.sql | 29 +++++++++++++++++++++++++++++ mysql/tables/llx_notify.sql | 31 +++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 mysql/tables/llx_action_def.sql create mode 100644 mysql/tables/llx_notify.sql diff --git a/mysql/tables/llx_action_def.sql b/mysql/tables/llx_action_def.sql new file mode 100644 index 00000000000..25d91a350d1 --- /dev/null +++ b/mysql/tables/llx_action_def.sql @@ -0,0 +1,29 @@ +-- =================================================================== +-- Copyright (C) 2003 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- =================================================================== + +create table llx_action_def +( + rowid integer NOT NULL PRIMARY KEY, + tms timestamp, + titre varchar(255) NOT NULL, + description text +); diff --git a/mysql/tables/llx_notify.sql b/mysql/tables/llx_notify.sql new file mode 100644 index 00000000000..68154ff85e8 --- /dev/null +++ b/mysql/tables/llx_notify.sql @@ -0,0 +1,31 @@ +-- =================================================================== +-- Copyright (C) 2003 Rodolphe Quiedeville +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +-- +-- $Id$ +-- $Source$ +-- +-- =================================================================== + +create table llx_notify +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + tms timestamp, + datec date, -- date de paiement + fk_action integer NOT NULL, + fk_soc integer NOT NULL, + fk_contact integer NOT NULL +);