mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Allow dependency names of up to 255 characters
This field needs to be a bit larger now that optdepends (including descriptions) are stored there as well. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
895907579e
commit
0f45e98a08
2 changed files with 7 additions and 1 deletions
|
@ -151,7 +151,7 @@ INSERT INTO DependencyTypes VALUES (4, 'optdepends');
|
|||
CREATE TABLE PackageDepends (
|
||||
PackageID INTEGER UNSIGNED NOT NULL,
|
||||
DepTypeID TINYINT UNSIGNED NOT NULL,
|
||||
DepName VARCHAR(64) NOT NULL,
|
||||
DepName VARCHAR(255) NOT NULL,
|
||||
DepCondition VARCHAR(20),
|
||||
INDEX (PackageID),
|
||||
INDEX (DepName),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue