view schema/updates/1102/01.bn_constraint.sql @ 5279:a17c2a0b8e44

client: use current time in the review layer request * avoid using value from time slider in the request for review layer
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 11 Jun 2020 15:50:11 +0200
parents 24c5eec22c2d
children
line wrap: on
line source

ALTER TABLE waterway.bottlenecks
    DROP CONSTRAINT IF EXISTS bottlenecks_bottleneck_id_validity_key,
    DROP CONSTRAINT IF EXISTS bottlenecks_bottleneck_id_validity_excl,
    DROP CONSTRAINT IF EXISTS bottlenecks_bottleneck_id_validity_staging_done_key,
    DROP CONSTRAINT IF EXISTS bottlenecks_bottleneck_id_validity_staging_done_excl;

ALTER TABLE waterway.bottlenecks
    ADD CONSTRAINT bottlenecks_bottleneck_id_validity_staging_done_key
        UNIQUE (bottleneck_id, validity, staging_done),
    ADD CONSTRAINT bottlenecks_bottleneck_id_validity_staging_done_excl
        EXCLUDE USING GiST (bottleneck_id WITH =,
                            validity WITH &&,
                            CAST(staging_done AS int) WITH =)
        DEFERRABLE INITIALLY DEFERRED;