Added missing import mapping in update Beta 5
authorAlexander Ebert <ebert@woltlab.com>
Sat, 27 Jul 2013 14:54:44 +0000 (16:54 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Sat, 27 Jul 2013 14:54:44 +0000 (16:54 +0200)
com.woltlab.wcf/update_b5.sql

index e9c36426cd81879585b98edb99e360746eec3acc..e6e30ee6b434fee6e6267ab28e3e0eb666016b61 100644 (file)
@@ -8,4 +8,14 @@ ALTER TABLE wcf1_user_activity_point ADD items INT(10) NOT NULL DEFAULT '0';
 /* b33c97d */
 ALTER TABLE wcf1_package_installation_queue DROP COLUMN confirmInstallation;
 ALTER TABLE wcf1_package_installation_queue DROP COLUMN packageType;
-ALTER TABLE wcf1_package_installation_queue ADD isApplication TINYINT(1) NOT NULL DEFAULT '0';
\ No newline at end of file
+ALTER TABLE wcf1_package_installation_queue ADD isApplication TINYINT(1) NOT NULL DEFAULT '0';
+
+DROP TABLE IF EXISTS wcf1_import_mapping;
+CREATE TABLE wcf1_import_mapping (
+       objectTypeID INT(10) NOT NULL,
+       oldID VARCHAR(255) NOT NULL,
+       newID INT(10) NOT NULL,
+       UNIQUE KEY (objectTypeID, oldID)
+);
+
+ALTER TABLE wcf1_import_mapping ADD FOREIGN KEY (objectTypeID) REFERENCES wcf1_object_type (objectTypeID) ON DELETE CASCADE;
\ No newline at end of file