aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/make_some_constraints_deferrable.sql
blob: af03544d8dc2c547c7781f0c75eaf3f074a72d66 (plain)
1
2
3
4
5
6
7
8
-- Deploy guix-data-service:make_some_constraints_deferrable to pg

BEGIN;

ALTER TABLE derivations_by_output_details_set
    ALTER CONSTRAINT derivations_by_output_details_set_derivation_id_fkey DEFERRABLE INITIALLY IMMEDIATE;

COMMIT;