Make url and pkgdesc fields optional

The url and pkgdesc PKGBUILD variables are optional, so they should be
in the AUR as well.

Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Johannes Löthberg 2015-06-20 12:47:23 +02:00 committed by Lukas Fleischer
parent 5d9a80a546
commit 61cdf09cd0
4 changed files with 24 additions and 5 deletions

View file

@ -58,4 +58,11 @@ CREATE TABLE PackageKeywords (
) ENGINE = InnoDB;
----
8. (optional) Setup cgit to browse the Git repositories via HTTP.
8. Let Description and URL store nulls
----
ALTER TABLE Packages MODIFY Description VARCHAR(255) NULL DEFAULT NULL,
MODIFY URL VARCHAR(255) NULL DEFAULT NULL;
----
9. (optional) Setup cgit to browse the Git repositories via HTTP.