dolibarr/mysql/tables/actioncomm.sql

51 lines
1.5 KiB
MySQL
Raw Normal View History

2002-04-29 22:57:25 +02:00
-- ========================================================================
2003-02-03 12:56:05 +01:00
-- Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2002-04-29 22:57:25 +02:00
--
-- $Id$
-- $Source$
--
2002-05-04 01:01:45 +02:00
-- 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.
--
2002-04-29 22:57:25 +02:00
-- Actions commerciales
--
-- ========================================================================
2002-04-29 22:57:25 +02:00
create table actioncomm
(
id integer AUTO_INCREMENT PRIMARY KEY,
datea datetime, -- action date
fk_action integer,
2002-05-10 14:28:10 +02:00
label varchar(50), -- libelle de l'action
2002-04-29 22:57:25 +02:00
fk_soc integer,
2002-05-10 14:28:10 +02:00
fk_contact integer default 0,
fk_user_action integer, -- id de la personne qui doit effectuer l'action
2002-04-29 22:57:25 +02:00
fk_user_author integer,
2002-05-10 14:28:10 +02:00
priority smallint,
percent smallint,
2002-04-29 22:57:25 +02:00
note text,
2003-02-02 14:14:40 +01:00
propalrowid integer,
fk_facture integer
2002-04-29 22:57:25 +02:00
);
2002-05-10 14:28:10 +02:00