15 lines
411 B
MySQL
15 lines
411 B
MySQL
|
|
||
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- 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';
|