From: Lebbeous Fogle-Weekley Date: Thu, 9 Aug 2012 15:36:35 +0000 (-0400) Subject: Do the same thing I did to fix constrain names in upgr scripts to baseline X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4e73b9dcedba7191990a08b42c950b3833a385ca;p=evergreen%2Fequinox.git Do the same thing I did to fix constrain names in upgr scripts to baseline Signed-off-by: Lebbeous Fogle-Weekley --- diff --git a/Open-ILS/src/sql/Pg/075.schema.url_verify.sql b/Open-ILS/src/sql/Pg/075.schema.url_verify.sql index a87acd862d..db42861d4a 100644 --- a/Open-ILS/src/sql/Pg/075.schema.url_verify.sql +++ b/Open-ILS/src/sql/Pg/075.schema.url_verify.sql @@ -28,7 +28,7 @@ CREATE TABLE url_verify.session ( container INT NOT NULL REFERENCES container.biblio_record_entry_bucket (id) DEFERRABLE INITIALLY DEFERRED, create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(), search TEXT NOT NULL, - CONSTRAINT name_once_per_lib UNIQUE (name, owning_lib) + CONSTRAINT uvs_name_once_per_lib UNIQUE (name, owning_lib) ); CREATE TABLE url_verify.url_selector ( @@ -95,7 +95,7 @@ CREATE TABLE url_verify.filter_set ( creator INT NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED, create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(), filter TEXT NOT NULL, - CONSTRAINT name_once_per_lib UNIQUE (name, owning_lib) + CONSTRAINT uvfs_name_once_per_lib UNIQUE (name, owning_lib) ); COMMIT;