of course, max length for Description must be 255, not 256

This commit is contained in:
pjmattal 2006-08-10 01:18:04 +00:00
parent 6e7d75efad
commit c15513fd77

View file

@ -109,7 +109,7 @@ CREATE TABLE Packages (
Name CHAR(32) NOT NULL,
Version CHAR(32) NOT NULL DEFAULT '',
CategoryID TINYINT UNSIGNED NOT NULL DEFAULT 1,
Description CHAR(256) NOT NULL DEFAULT "An Arch Package",
Description CHAR(255) NOT NULL DEFAULT "An Arch Package",
URL CHAR(255) NOT NULL DEFAULT "http://www.archlinux.org",
DummyPkg TINYINT UNSIGNED NOT NULL DEFAULT 0, -- 1=>dummy
FSPath CHAR(255) NOT NULL DEFAULT '',