diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-08-10 12:27:56 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-08-10 12:32:46 +0200 |
commit | 4d7da95906f66a10368f8689b6686199753268b9 (patch) | |
tree | 6fcadd676a5c4ac1538cc870025d493855ef6de2 /upgrading | |
parent | 2b29fa4bb0329db2b85c436b82586869c0d763c2 (diff) | |
download | aurweb-4d7da95906f66a10368f8689b6686199753268b9.tar.xz |
Add support for architecture-specific fields
This adds support for architecture-specific dependencies and relations.
Support for this has recently been added to makepkg, see commit 2b556d8
(PKGBUILD: handle arch specific attributes, 2014-07-25) in the pacman
repository for details.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'upgrading')
-rw-r--r-- | upgrading/3.5.0.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/upgrading/3.5.0.txt b/upgrading/3.5.0.txt new file mode 100644 index 0000000..a0ee389 --- /dev/null +++ b/upgrading/3.5.0.txt @@ -0,0 +1,6 @@ +1. Add support for architecture-specific dependencies to the database: + +---- +ALTER TABLE PackageDepends ADD COLUMN DepArch VARCHAR(255) NULL DEFAULT NULL; +ALTER TABLE PackageRelations ADD COLUMN RelArch VARCHAR(255) NULL DEFAULT NULL; +---- |