Skip to content
Snippets Groups Projects
Commit d21718c9 authored by tbrehm's avatar tbrehm
Browse files

Added definition for table mail_traffic to SQL dump.

parent f17e5b0b
No related branches found
No related tags found
No related merge requests found
......@@ -329,6 +329,25 @@ CREATE TABLE `mail_mailman_domain` (
-- Daten fr Tabelle `mail_mailman_domain`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur fr Tabelle `mail_traffic`
--
CREATE TABLE `mail_traffic` (
`traffic_id` int(10) unsigned NOT NULL auto_increment,
`mailuser_id` int(10) unsigned NOT NULL,
`month` char(7) NOT NULL,
`traffic` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`traffic_id`),
KEY `mailuser_id` (`mailuser_id`,`month`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Daten fr Tabelle `mail_traffic`
--
-- --------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment