summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2020-10-07 18:02:42 +0200
committerHelmut Grohne <helmut@subdivi.de>2020-10-07 18:02:42 +0200
commitd8a9b7aa8c9882fdfc619e1ce27b71f207015762 (patch)
tree610175639232a91fbd9f881f85b1fb79da622bc3 /schema.sql
parent7b5da3c5b65ee5633c42616d3e6ca3f3c7d4785c (diff)
downloadcrossqa-d8a9b7aa8c9882fdfc619e1ce27b71f207015762.tar.gz
add build architecture to schema of building table
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 3569eac..872b7db 100644
--- a/schema.sql
+++ b/schema.sql
@@ -50,5 +50,6 @@ CREATE INDEX bugs_affects_index ON bugs(affects);
CREATE TABLE building (
source TEXT NOT NULL,
- architecture TEXT NOT NULL,
+ buildarch TEXT NOT NULL,
+ hostarch TEXT NOT NULL,
pid INTEGER NOT NULL);