Preparing update 2.0.0 Beta 1
authorAlexander Ebert <ebert@woltlab.com>
Sat, 18 May 2013 16:38:13 +0000 (18:38 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Sat, 18 May 2013 16:38:13 +0000 (18:38 +0200)
com.woltlab.wcf/package.xml
com.woltlab.wcf/update_b1.sql [new file with mode: 0644]

index 8f54d6281ee6eda7a9198d5336fea2425a9b0c5b..b56d78f7b477bfdf0a5f301dffe6bd21b7f38f64 100644 (file)
@@ -5,8 +5,8 @@
                <packagedescription>Free web-framework, designed and developed for complex community applications.</packagedescription>
                <packagedescription language="de">Freies Web-Framework, das für komplexe Community-Anwendungen entworfen und entwickelt wurde.</packagedescription>
                <isapplication>1</isapplication>
-               <version>2.0.0 Alpha 1</version> <!-- codename: maelstrom -->
-               <date>2011-05-19</date>
+               <version>2.0.0 Beta 1</version> <!-- codename: maelstrom -->
+               <date>2013-05-18</date>
        </packageinformation>
        
        <authorinformation>
                <instruction type="acpSearchProvider">acpSearchProvider.xml</instruction>
                <instruction type="style">woltlab-basic-style.tgz</instruction>
        </instructions>
+       
+       <instructions type="update" fromversion="2.0.0 Alpha 1">
+               <instruction type="acpTemplate">acptemplates.tar</instruction>
+               <instruction type="file">files.tar</instruction>
+               <instruction type="template">template.tar</instruction>
+               
+               <instruction type="acpMenu">acpMenu.xml</instruction>
+               <instruction type="clipboardAction">clipboardAction.xml</instruction>
+               <instruction type="coreObject">coreObject.xml</instruction>
+               <instruction type="option">option.xml</instruction>
+               <instruction type="userGroupOption">userGroupOption.xml</instruction>
+       </instructions>
 </package>
diff --git a/com.woltlab.wcf/update_b1.sql b/com.woltlab.wcf/update_b1.sql
new file mode 100644 (file)
index 0000000..0509a83
--- /dev/null
@@ -0,0 +1,7 @@
+/* 6570e38 */
+ALTER TABLE wcf1_template DROP COLUMN obsolete;
+ALTER TABLE wcf1_template ADD COLUMN lastModificationTime INT(10) NOT NULL DEFAULT 0;
+
+ALTER TABLE wcf1_template_group CHANGE parentTemplateGroupID INT(10) NULL;
+
+ALTER TABLE wcf1_template_group ADD FOREIGN KEY (parentTemplateGroupID) REFERENCES wcf1_template_group (templateGroupID) ON DELETE SET NULL;
\ No newline at end of file