summaryrefslogtreecommitdiff
path: root/upgrading/4.4.0.txt
blob: 1cc55b32d9b11fa25a88cccff1e155d1e190188d (plain)
1
2
3
4
5
6
7
8
9
10
11
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";
----