X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fextensions%2Fext-newsletter.php;h=baec7dff597006126faa1e49326621bbc29eb69f;hb=985561270461045c64719266ca6b3a795f6cd76a;hp=a104ccfec79e4bdb589cb9fd5a45f79b4a426ed2;hpb=8d0ed5ed9a9ca0e07b9582f2311b44bdcc5a95ea;p=mailer.git diff --git a/inc/extensions/ext-newsletter.php b/inc/extensions/ext-newsletter.php index a104ccfec7..baec7dff59 100644 --- a/inc/extensions/ext-newsletter.php +++ b/inc/extensions/ext-newsletter.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -83,7 +83,7 @@ switch (getExtensionMode()) { case '0.0.2': // SQL queries for v0.0.2 // Update notes (these will be set as task text!) - setExtensionUpdateNotes('URL im Versendeformular und Option Immer aktiv für diese Erweiterung deaktiviert.'); + setExtensionUpdateNotes('URL im Versendeformular und Option Immer aktiv für diese Erweiterung deaktiviert.'); break; case '0.0.3': // SQL queries for v0.0.3 @@ -140,7 +140,7 @@ switch (getExtensionMode()) { // Tables: // - Main data table addDropTableSql('newsletter_data'); - addCreateTableSql('newsletter_data', "( + addCreateTableSql('newsletter_data', " `nl_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `nl_subject` VARCHAR(255) NOT NULL DEFAULT '{OPEN_CONFIG}nl_default_subject{CLOSE_CONFIG}', `nl_header_text` MEDIUMTEXT, @@ -154,34 +154,34 @@ switch (getExtensionMode()) { `nl_recipients` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, `nl_received` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, `nl_total_clicks` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, -PRIMARY KEY (`nl_id`) -) ENGINE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'General newsletter data'"); +PRIMARY KEY (`nl_id`)", + 'General newsletter data'); // - Topics data table addDropTableSql('newsletter_topics'); - addCreateTableSql('newsletter_topics', "( + addCreateTableSql('newsletter_topics', " `nl_topic_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `nl_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, `nl_topic_title` VARCHAR(255) NOT NULL DEFAULT '', `nl_topic_text` MEDIUMTEXT, `nl_topic_clicks` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, -INDEX `newsletter_id` (`nl_id`), -PRIMARY KEY (`nl_topic_id`) -) ENGINE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Newsletter topics'"); +PRIMARY KEY (`nl_topic_id`), +INDEX `newsletter_id` (`nl_id`)", + 'Newsletter topics'); // - Sponsor orders data table addDropTableSql('newsletter_orders'); - addCreateTableSql('newsletter_orders', "( + addCreateTableSql('newsletter_orders', " `nl_order_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `nl_sponsor_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, `nl_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, `nl_topic_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, `nl_order_placed` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `nl_order_accepted` ENUM('Y','N') NOT NULL DEFAULT 'N', -UNIQUE KEY `sponsor_nl_topic` (`nl_sponsor_id`,`nl_id`,`nl_topic_id`), -INDEX `topic` (`nl_topic_id`), -PRIMARY KEY (`nl_order_id`) -) ENGINE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Newsletter orders'"); +PRIMARY KEY (`nl_order_id`), +UNIQUE INDEX `sponsor_nl_topic` (`nl_sponsor_id`,`nl_id`,`nl_topic_id`), +INDEX `topic` (`nl_topic_id`)", + 'Newsletter orders'); // Configuration addConfigAddSql('nl_expire', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (getOneDay() * 7));