Preparing release 2.0.0 RC 3
authorAlexander Ebert <ebert@woltlab.com>
Mon, 25 Nov 2013 22:38:27 +0000 (23:38 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Mon, 25 Nov 2013 22:38:27 +0000 (23:38 +0100)
com.woltlab.wcf/package.xml
com.woltlab.wcf/update_rc3.sql [new file with mode: 0644]

index 13136937b14aa34c1ef376dfa744a2b6d54bd70c..f6280671d2345a965bf4f67fcc195bd6eb01628e 100644 (file)
@@ -5,8 +5,8 @@
                <packagedescription><![CDATA[Free web-framework, designed and developed for complex community applications.]]></packagedescription>
                <packagedescription language="de"><![CDATA[Freies Web-Framework, das für komplexe Community-Anwendungen entworfen und entwickelt wurde.]]></packagedescription>
                <isapplication>1</isapplication>
-               <version>2.0.0 RC 2</version> <!-- codename: maelstrom -->
-               <date>2013-11-21</date>
+               <version>2.0.0 RC 3</version> <!-- codename: maelstrom -->
+               <date>2013-11-26</date>
        </packageinformation>
        
        <authorinformation>
                <instruction type="script">acp/post_install.php</instruction> 
        </instructions>
        
-       <instructions type="update" fromversion="2.0.0 RC 1">
+       <instructions type="update" fromversion="2.0.0 RC 2">
+               <instruction type="acpTemplate">acptemplates_update.tar</instruction>
                <instruction type="file">files_update.tar</instruction>
                <instruction type="template">templates_update.tar</instruction>
                <instruction type="language">language/*.xml</instruction>
-               <instruction type="style">blue-temptation-style.tgz</instruction>
+               <instruction type="sql">update_rc3.sql</instruction>
                
-               <instruction type="objectType">objectType.xml</instruction>
+               <instruction type="option">option.xml</instruction>
+               <instruction type="userGroupOption">userGroupOption.xml</instruction>
        </instructions>
 </package>
diff --git a/com.woltlab.wcf/update_rc3.sql b/com.woltlab.wcf/update_rc3.sql
new file mode 100644 (file)
index 0000000..d59f190
--- /dev/null
@@ -0,0 +1,4 @@
+/* d2fbb3b */
+UPDATE wcf1_user_rank CHANGE groupID groupID INT(10) NOT NULL;
+ALTER TABLE wcf1_user_rank DROP KEY groupID;
+ALTER TABLE wcf1_user_rank ADD FOREIGN KEY (groupID) REFERENCES wcf1_user_group ON DELETE CASCADE;