summaryrefslogtreecommitdiffstats
path: root/UPGRADING
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2011-02-01 15:01:56 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2011-02-01 15:01:56 +0100
commit366ea03118dcd06047dc178d0c8c620af8612530 (patch)
treee964166546f0e8646b562a9eaba335ed06cd6427 /UPGRADING
parent7a58e99eab21449dd8815776bf0dd871d00fe7a4 (diff)
downloadaur-366ea03118dcd06047dc178d0c8c620af8612530.tar.gz
aur-366ea03118dcd06047dc178d0c8c620af8612530.tar.xz
Remove "FSPath" column from "Packages" table.
This field is not used anymore, so drop it from the table and remove all references. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING2
1 files changed, 1 insertions, 1 deletions
diff --git a/UPGRADING b/UPGRADING
index e5dc5273..d4e4e3ce 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -9,7 +9,7 @@ From 1.7.0 to 1.8.0
----
ALTER TABLE Packages ADD OutOfDateTS BIGINT UNSIGNED NULL DEFAULT NULL;
UPDATE Packages SET OutOfDateTS = UNIX_TIMESTAMP() WHERE OutOfDate = 1;
-ALTER TABLE Packages DROP OutOfDate, DROP URLPath, DROP LocationID;
+ALTER TABLE Packages DROP OutOfDate, DROP FSPath, DROP URLPath, DROP LocationID;
DROP TABLE PackageLocations;
----