diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-20 12:47:23 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-20 14:29:43 +0200 |
commit | 61cdf09cd0581940639d0a6ebf09788f61b93eb9 (patch) | |
tree | 39745cf03579b8c2785f05d2ee69b0aade233e6c /upgrading | |
parent | 5d9a80a546265d7c746b236a186a142bc3ecc35e (diff) | |
download | aurweb-61cdf09cd0581940639d0a6ebf09788f61b93eb9.tar.xz |
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>
Diffstat (limited to 'upgrading')
-rw-r--r-- | upgrading/4.0.0.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/upgrading/4.0.0.txt b/upgrading/4.0.0.txt index 954dfcc..637c4b9 100644 --- a/upgrading/4.0.0.txt +++ b/upgrading/4.0.0.txt @@ -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. |