15 lines
411 B
SQL
15 lines
411 B
SQL
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Structure de la table `courriels`
|
|
--
|
|
|
|
CREATE TABLE `courriels` (
|
|
`id` int(10) UNSIGNED NOT NULL,
|
|
`destinataire` text NOT NULL,
|
|
`objet` text NOT NULL,
|
|
`message` text NOT NULL,
|
|
`html` tinyint(1) NOT NULL COMMENT 'false = text, true = html'
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='stockage des courriels en attente d''envoie';
|