summaryrefslogtreecommitdiff
path: root/upgrading/4.4.0.txt
diff options
context:
space:
mode:
Diffstat (limited to 'upgrading/4.4.0.txt')
-rw-r--r--upgrading/4.4.0.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/upgrading/4.4.0.txt b/upgrading/4.4.0.txt
new file mode 100644
index 0000000..1cc55b3
--- /dev/null
+++ b/upgrading/4.4.0.txt
@@ -0,0 +1,12 @@
+1. Resize the URL column of the Packages table:
+
+----
+ALTER TABLE Packages MODIFY URL VARCHAR(8000) NULL DEFAULT NULL;
+----
+
+2. Resize the Source column of the PackageSources table:
+
+----
+ALTER TABLE PackageSources
+ MODIFY Source VARCHAR(8000) NOT NULL DEFAULT "/dev/null";
+----