Fixed SQL update
authorAlexander Ebert <ebert@woltlab.com>
Fri, 21 Jun 2013 20:02:39 +0000 (22:02 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 21 Jun 2013 20:02:39 +0000 (22:02 +0200)
com.woltlab.wcf/update_b4.sql

index 5c2dcdf065a184305c2e7a4caddc92566f769094..1c46c98818c2bda18b9dfceb00182848fa8b8540 100644 (file)
@@ -1,8 +1,12 @@
 /* 40381db */
-ALTER TABLE wcf1_search_index DROP KEY (objectTypeID, objectID);
-ALTER TABLE wcf1_search_index ADD UNIQUE KEY (objectTypeID, objectID, languageID);
+ALTER TABLE wcf1_search_index DROP INDEX objectTypeID;
+ALTER TABLE wcf1_search_index ADD UNIQUE KEY objectTypeID (objectTypeID, objectID, languageID);
 
 /* 8ce85e3 */
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfButtonBorderRadius', '15px');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfSmallButtonBorderRadius', '3px');
 INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfInputBorderRadius', '0');
+
+/* 133a9cf */
+INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfTextShadowLightColor', 'rgba(255, 255, 255, .8)');
+INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfTextShadowDarkColor', 'rgba(0, 0, 0, .8)');