diff options
author | Helmut Grohne <helmut@subdivi.de> | 2020-10-08 13:11:15 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2020-10-08 13:11:15 +0200 |
commit | 91d7433bfa2e39b57b37a8c891081ee4bfaae0df (patch) | |
tree | f6c1baed37b79de86c71a7fd0775b117d28d2c93 /schema.sql | |
parent | 01368f3501ef6df554c333d2d4e2256f0e7dd723 (diff) | |
download | crossqa-91d7433bfa2e39b57b37a8c891081ee4bfaae0df.tar.gz |
add build architecture to schema of buildrequests table
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |