Add a table to record where narinfo files were fetched from
Otherwise it's hard to associated narinfo files to build servers.
This commit is contained in:
parent
299f9dc480
commit
d2405f6c77
4 changed files with 27 additions and 0 deletions
12
sqitch/deploy/narinfo_fetch_record.sql
Normal file
12
sqitch/deploy/narinfo_fetch_record.sql
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-- Deploy guix-data-service:narinfo_fetch_record to pg
|
||||
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE narinfo_fetch_records (
|
||||
id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
|
||||
narinfo_signature_data_id integer NOT NULL REFERENCES narinfo_signature_data(id),
|
||||
build_server_id integer NOT NULL REFERENCES build_servers(id),
|
||||
fetched_at timestamp without time zone DEFAULT clock_timestamp()
|
||||
);
|
||||
|
||||
COMMIT;
|
||||
Loading…
Add table
Add a link
Reference in a new issue