guix-data-service/sqitch/deploy/build_background_processing_queue.sql

10 lines
197 B
MySQL
Raw Normal View History

-- Deploy guix-data-service:build_background_processing_queue to pg
BEGIN;
CREATE TABLE build_background_processing_queue (
build_id integer PRIMARY KEY REFERENCES builds (id)
);
COMMIT;