]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-booking.php
Introduced ext-alert
[mailer.git] / inc / extensions / ext-booking.php
index c31b3ced8e4a5cb68c7e484b7c4ceac69da288f0..aa0b3e4752548e5a987f0fd864234f2dc4a958e4 100644 (file)
@@ -41,10 +41,10 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Version number
-setThisExtensionVersion('0.0.0');
+setThisExtensionVersion('0.0.1');
 
 // Version history array (add more with , '0.0.1' and so on)
-setExtensionVersionHistory(array('0.0.0'));
+setExtensionVersionHistory(array('0.0.0', '0.0.1'));
 
 // Check extension load-mode
 switch (getExtensionMode()) {
@@ -56,7 +56,7 @@ switch (getExtensionMode()) {
                // Drop/create table for user bookings
                addDropTableSql('user_booking');
                addCreateTableSql('user_booking', "
-`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
+`booking_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
 `subject` VARCHAR(255) NOT NULL DEFAULT 'missing',
 `points_mode` ENUM('ADD','SUB') NOT NULL DEFAULT 'ADD',
@@ -64,7 +64,7 @@ switch (getExtensionMode()) {
 `points` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.0000,
 `comments` TINYTEXT NULL DEFAULT NULL,
 `recorded` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
-PRIMARY KEY (`id`),
+PRIMARY KEY (`booking_id`),
 INDEX (`userid`)",
                        'Member points booking table');
 
@@ -105,10 +105,10 @@ INDEX (`userid`)",
        case 'update': // Update an extension
                switch (getCurrentExtensionVersion()) {
                        case '0.0.1': // SQL queries for v0.0.1
-                               addExtensionSql('');
+                               addExtensionChangeTableColumnSql('user_booking', 'id', 'booking_id', 'BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT');
 
                                // Update notes (these will be set as task text!)
-                               setExtensionUpdateNotes('');
+                               setExtensionUpdateNotes("Spalte <strong>id</strong umbenannt nach <strong>booking_id</strong>, da <em>id</em> zu allgemein ist (sollte am besten &uuml;berall folgen).");
                                break;
                } // END - switch