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 /UPGRADING | |
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 'UPGRADING')
-rw-r--r-- | UPGRADING | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -165,6 +165,12 @@ ALTER TABLE PackageDepends ADD FOREIGN KEY (DepTypeID) REFERENCES DependencyTypes(ID) ON DELETE NO ACTION; ---- +14. Resize the package dependency name field: + +---- +ALTER TABLE PackageDepends MODIFY DepName VARCHAR(255) NOT NULL; +---- + From 2.2.0 to 2.3.0 ------------------- |