diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-04-18 23:44:59 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-04-18 23:44:59 +0200 |
commit | 0f45e98a088d7e941dce09ef17643335f4483f7e (patch) | |
tree | 596b1aac6f78469de01c8cb5f5d88f80e7afcf0f /schema | |
parent | 895907579e89816074457b2bc3bbd34f5addc46f (diff) | |
download | aurweb-0f45e98a088d7e941dce09ef17643335f4483f7e.tar.xz |
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>
Diffstat (limited to 'schema')
-rw-r--r-- | schema/aur-schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/aur-schema.sql b/schema/aur-schema.sql index 327a792..af03b69 100644 --- a/schema/aur-schema.sql +++ b/schema/aur-schema.sql @@ -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), |