]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/sql_patches/mode-update.php
Continued, finally:
[mailer.git] / inc / extensions / sql_patches / mode-update.php
index e86971185b1517dcac6f191b0cc5f56dd0d46e24..d5562501e80ad07479b36f09c6447988b1e95ddf 100644 (file)
@@ -179,7 +179,7 @@ if (!defined('__SECURITY')) {
                                break;
 
                        case '0.2.1': // SQL queries for v0.2.1
-                               addConfigAddSql('css_php', "ENUM('DIRECT','FILE','INLINE') NOT NULL DEFAULT 'FILE'");
+                               addConfigAddSql('css_php', "ENUM('DIRECT','FILE','INLINE','ASSET') NOT NULL DEFAULT 'FILE'");
 
                                // Update notes (these will be set as task text!)
                                setExtensionUpdateNotes("Ausgabe der CSS-Dateien entweder per css.php oder sie sind direkt eingebunden.");
@@ -587,7 +587,7 @@ UNIQUE INDEX `name_function` (`filter_name`, `filter_function`)",
                                break;
 
                        case '0.6.5': // SQL queries for v0.6.5
-                               addConfigChangeSql('css_php', 'css_php', "ENUM('DIRECT','FILE','INLINE') NOT NULL DEFAULT 'FILE'");
+                               addConfigChangeSql('css_php', 'css_php', "ENUM('DIRECT','FILE','INLINE','ASSET') NOT NULL DEFAULT 'FILE'");
 
                                // Update notes (these will be set as task text!)
                                setExtensionUpdateNotes("Ausgabe der CSS-Dateien entweder per css.php oder sie sind direkt eingebunden.");
@@ -932,6 +932,13 @@ INDEX (`history_last_used` DESC)",
                                // Update notes (these will be set as task text!)
                                setExtensionUpdateNotes("jQuery aktualisiert.");
                                break;
+
+                       case '1.0.5': // SQL queries for v1.0.5
+                               addConfigChangeSql('css_php', 'css_php', "ENUM('DIRECT','FILE','INLINE','ASSET') NOT NULL DEFAULT 'FILE'");
+
+                               // Update notes (these will be set as task text!)
+                               setExtensionUpdateNotes("Ausgabe der CSS-Dateien entweder per css.php, als style-Tag, als minifiziertes Asset "kompiliert" oder sie sind direkt eingebunden.");
+                               break;
                } // END - switch
 
 // [EOF]