Do the same thing I did to fix constrain names in upgr scripts to baseline
authorLebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Thu, 9 Aug 2012 15:36:35 +0000 (11:36 -0400)
committerLebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Thu, 9 Aug 2012 15:36:35 +0000 (11:36 -0400)
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Open-ILS/src/sql/Pg/075.schema.url_verify.sql

index fd365e0..d45d564 100644 (file)
@@ -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;