Added the DepCondition field to the table PackageDepends.

This commit is contained in:
dsa 2007-02-01 10:15:52 +00:00
parent 2f2a9139d6
commit 723f1afde8

View file

@ -150,6 +150,7 @@ CREATE TABLE Packages (
CREATE TABLE PackageDepends (
PackageID INTEGER UNSIGNED NOT NULL,
DepPkgID INTEGER UNSIGNED NOT NULL,
DepCondition VARCHAR(20),
INDEX (PackageID)
);