llx_mailing_cibles-mailing.sql 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. create table llx_mailing_cibles
  21. (
  22. rowid integer AUTO_INCREMENT PRIMARY KEY,
  23. fk_mailing integer NOT NULL,
  24. fk_contact integer NOT NULL,
  25. lastname varchar(160),
  26. firstname varchar(160),
  27. email varchar(160) NOT NULL,
  28. other varchar(255) NULL,
  29. tag varchar(64) NULL, -- a unique key as a hash of: dolibarr_main_instance_unique_id;email;lastname;mailing_id;MAILING_EMAIL_UNSUBSCRIBE_KEY
  30. statut smallint NOT NULL DEFAULT 0, -- -1 = error, 0 = not sent, ...
  31. source_url varchar(255),
  32. source_id integer,
  33. source_type varchar(32),
  34. date_envoi datetime,
  35. tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  36. error_text varchar(255) -- text with error if statut is -1
  37. )ENGINE=innodb;