From 1487b02a73beacbca8d48464c543fbf5cbbb1922 Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Sun, 26 Aug 2012 14:07:18 +0000 Subject: [PATCH] removing mailman table --- install/mysql.sql | 13 ------------- install/upgrades/1.1.sql | 14 -------------- 2 files changed, 27 deletions(-) diff --git a/install/mysql.sql b/install/mysql.sql index ae15605a..5acff775 100644 --- a/install/mysql.sql +++ b/install/mysql.sql @@ -278,19 +278,6 @@ CREATE TABLE IF NOT EXISTS `recipient` ( UNIQUE KEY `key_id` (`id`,`address_id`) ) COMMENT = 'Table containing other recipients (aliases) for an address.'; --- --- Mailman table. --- --- Table containing mailman addresses - -CREATE TABLE IF NOT EXISTS `mailman` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, -- Technical id. - `address_id` bigint(20) unsigned NOT NULL REFERENCES `address`(`id`), -- Reference to address - `delivery` varchar(255) NOT NULL, -- Delivery transport. - `update_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- Update date, for technical usage only. - PRIMARY KEY (`id`), - UNIQUE KEY `address_id` (`address_id`) -) COMMENT = 'Table containing mailman list addresses.'; -- -- Structure de la table `stats3` diff --git a/install/upgrades/1.1.sql b/install/upgrades/1.1.sql index bd6557b2..0a52320e 100644 --- a/install/upgrades/1.1.sql +++ b/install/upgrades/1.1.sql @@ -130,20 +130,6 @@ CREATE TABLE `recipient` ( UNIQUE KEY `address_id` (`address_id`) ) COMMENT = 'Table containing other recipients (aliases) for an address.'; --- --- Mailman table. --- --- Table containing mailman addresses - -CREATE TABLE `mailman` ( - `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, -- Technical id. - `address_id` bigint(20) unsigned NOT NULL REFERENCES `address`(`id`), -- Reference to address - `delivery` varchar(255) NOT NULL, -- Delivery transport. - `update_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- Update date, for technical usage only. - PRIMARY KEY (`id`), - UNIQUE KEY `address_id` (`address_id`) -) COMMENT = 'Table containing mailman list addresses.'; - -- Regenerate apache conf to enable mpm-itk update sub_domaines set web_action = 'UPDATE';