Always use virtual URLs
[aur.git] / upgrading / 3.5.0.txt
blob006f9b36bcae2c93411f7c5877f6149d7c37502d
1 1. Add support for architecture-specific dependencies to the database:
3 ----
4 ALTER TABLE PackageDepends ADD COLUMN DepArch VARCHAR(255) NULL DEFAULT NULL;
5 ALTER TABLE PackageRelations ADD COLUMN RelArch VARCHAR(255) NULL DEFAULT NULL;
6 ALTER TABLE PackageSources ADD COLUMN SourceArch VARCHAR(255) NULL DEFAULT NULL;
7 ----
9 2. Add a time stamp column to the package votes table:
11 ----
12 ALTER TABLE PackageVotes ADD COLUMN VoteTS BIGINT NULL DEFAULT NULL;
13 ----
15 3. Add a "wayland" category:
17 ----
18 INSERT INTO PackageCategories (Category) VALUES ('wayland');
19 ----
21 4. The configuration file format has been changed. Make sure you convert
22 web/lib/config.inc.php to the new format (see conf/config.proto for an example
23 configuration) and put the resulting file in conf/config.
25 5. Support for non-virtual URLs has been removed.