summaryrefslogtreecommitdiffstats
path: root/support/schema/aur-schema.sql
diff options
context:
space:
mode:
authordsa <dsa>2007-02-01 11:15:52 +0100
committerdsa <dsa>2007-02-01 11:15:52 +0100
commit723f1afde8ebb066700e64ccff74d2e04a0a2f3d (patch)
tree8a71b52b417227edcc7ad4058b5c0efdd3b8ed0a /support/schema/aur-schema.sql
parent2f2a9139d6edfff397138b6a8a2f4d690b2144ea (diff)
downloadaur-723f1afde8ebb066700e64ccff74d2e04a0a2f3d.tar.gz
aur-723f1afde8ebb066700e64ccff74d2e04a0a2f3d.tar.xz
Added the DepCondition field to the table PackageDepends.
Diffstat (limited to 'support/schema/aur-schema.sql')
-rw-r--r--support/schema/aur-schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql
index d3e0fff0..6c601f13 100644
--- a/support/schema/aur-schema.sql
+++ b/support/schema/aur-schema.sql
@@ -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)
);