summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2020-10-08 13:11:15 +0200
committerHelmut Grohne <helmut@subdivi.de>2020-10-08 13:11:15 +0200
commit91d7433bfa2e39b57b37a8c891081ee4bfaae0df (patch)
treef6c1baed37b79de86c71a7fd0775b117d28d2c93 /schema.sql
parent01368f3501ef6df554c333d2d4e2256f0e7dd723 (diff)
downloadcrossqa-91d7433bfa2e39b57b37a8c891081ee4bfaae0df.tar.gz
add build architecture to schema of buildrequests 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 872b7db..1c2a2ec 100644
--- a/schema.sql
+++ b/schema.sql
@@ -35,7 +35,8 @@ CREATE INDEX builds_source_index ON builds(source);
CREATE TABLE buildrequests (
id INTEGER PRIMARY KEY,
source TEXT NOT NULL,
- architecture TEXT,
+ buildarch TEXT,
+ hostarch TEXT,
requesttime TIMESTAMP NOT NULL,
priority INTEGER NOT NULL DEFAULT 0);