summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2020-10-07 16:48:12 +0200
committerHelmut Grohne <helmut@subdivi.de>2020-10-07 16:48:12 +0200
commit7b5da3c5b65ee5633c42616d3e6ca3f3c7d4785c (patch)
treea39213ffa79f2189f7fb85f13bff524b650aa140 /schema.sql
parenta52d12012b1befdf1f00d0fcd5101306c52271ff (diff)
downloadcrossqa-7b5da3c5b65ee5633c42616d3e6ca3f3c7d4785c.tar.gz
add build architecture to schema of builds 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 56184be..3569eac 100644
--- a/schema.sql
+++ b/schema.sql
@@ -25,7 +25,8 @@ INSERT INTO depcheck (architecture, releasetime, updatetime, giveback) VALUES
CREATE TABLE builds (
source TEXT NOT NULL,
version TEXT NOT NULL,
- architecture TEXT NOT NULL,
+ buildarch TEXT NOT NULL,
+ hostarch TEXT NOT NULL,
success BOOLEAN NOT NULL CHECK (success in (0, 1)),
starttime TIMESTAMP NOT NULL,
filename TEXT NOT NULL);