1-- ========================================================================
2-- Copyright (C) 2005		Rodolphe Quiedeville <rodolphe@quiedeville.org>
3-- Copyright (C) 2009-2016	Laurent Destailleur  <eldy@users.sourceforge.net>
4-- Copyright (C) 2011-2012	Regis Houssin        <regis.houssin@inodbox.com>
5--
6-- This program is free software; you can redistribute it and/or modify
7-- it under the terms of the GNU General Public License as published by
8-- the Free Software Foundation; either version 3 of the License, or
9-- (at your option) any later version.
10--
11-- This program is distributed in the hope that it will be useful,
12-- but WITHOUT ANY WARRANTY; without even the implied warranty of
13-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14-- GNU General Public License for more details.
15--
16-- You should have received a copy of the GNU General Public License
17-- along with this program. If not, see <https://www.gnu.org/licenses/>.
18--
19-- ========================================================================
20
21
22create table llx_mailing_cibles
23(
24  rowid				integer AUTO_INCREMENT PRIMARY KEY,
25  fk_mailing		integer NOT NULL,
26  fk_contact		integer NOT NULL,
27  lastname			varchar(160),
28  firstname			varchar(160),
29  email				varchar(160) NOT NULL,
30  other				varchar(255) NULL,
31  tag				varchar(64) NULL,					-- a unique key as a hash of: dolibarr_main_instance_unique_id;email;lastname;mailing_id;MAILING_EMAIL_UNSUBSCRIBE_KEY
32  statut			smallint NOT NULL DEFAULT 0,		-- -1 = error, 0 = not sent, ...
33  source_url		varchar(255),
34  source_id			integer,
35  source_type		varchar(16),
36  date_envoi		datetime,
37  tms				timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
38  error_text		varchar(255)						-- text with error if statut is -1
39)ENGINE=innodb;
40