From: Alexander Ebert Date: Mon, 25 Nov 2013 22:38:27 +0000 (+0100) Subject: Preparing release 2.0.0 RC 3 X-Git-Tag: 2.0.0_RC_3~5 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3bb9384387f10af5801862ec8070fd8ea3d186b1;p=GitHub%2FWoltLab%2FWCF.git Preparing release 2.0.0 RC 3 --- diff --git a/com.woltlab.wcf/package.xml b/com.woltlab.wcf/package.xml index 13136937b1..f6280671d2 100644 --- a/com.woltlab.wcf/package.xml +++ b/com.woltlab.wcf/package.xml @@ -5,8 +5,8 @@ 1 - 2.0.0 RC 2 - 2013-11-21 + 2.0.0 RC 3 + 2013-11-26 @@ -43,12 +43,14 @@ acp/post_install.php - + + acptemplates_update.tar files_update.tar templates_update.tar language/*.xml - blue-temptation-style.tgz + update_rc3.sql - objectType.xml + option.xml + userGroupOption.xml diff --git a/com.woltlab.wcf/update_rc3.sql b/com.woltlab.wcf/update_rc3.sql new file mode 100644 index 0000000000..d59f190bae --- /dev/null +++ b/com.woltlab.wcf/update_rc3.sql @@ -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;