summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/schema.sql b/schema.sql
index d57867b..56184be 100644
--- a/schema.sql
+++ b/schema.sql
@@ -46,3 +46,8 @@ CREATE TABLE bugs (
title TEXT,
patched BOOLEAN NOT NULL CHECK (patched in (0, 1)));
CREATE INDEX bugs_affects_index ON bugs(affects);
+
+CREATE TABLE building (
+ source TEXT NOT NULL,
+ architecture TEXT NOT NULL,
+ pid INTEGER NOT NULL);