blob: 26abd3525130c8e95b77775e96ec0de8d3c6bae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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;
|