]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 423613: Make profiles.extern_id actually UNIQUE in the DB schema.
authormkanat%bugzilla.org <>
Mon, 30 Mar 2009 23:16:05 +0000 (23:16 +0000)
committermkanat%bugzilla.org <>
Mon, 30 Mar 2009 23:16:05 +0000 (23:16 +0000)
Patch by arbingersys@gmail.com r=mkanat, a=mkanat

Bugzilla/DB/Schema.pm
Bugzilla/Install/DB.pm

index a3fefd8d8bcbf603a35aab92263d06c96c811df6..680f754ca8fa179c50f279167cb649370a6a441c 100644 (file)
@@ -825,6 +825,8 @@ use constant ABSTRACT_SCHEMA => {
         INDEXES => [
             profiles_login_name_idx => {FIELDS => ['login_name'],
                                         TYPE => 'UNIQUE'},
+            profiles_extern_id_idx => {FIELDS => ['extern_id'],
+                                       TYPE   => 'UNIQUE'}
         ],
     },
 
index ff949f58e64b3951cd1567154c9b72dd764ba604..ec6c8ce9c7dba9a98b1c7115944bcd97a8647e92 100644 (file)
@@ -554,6 +554,10 @@ sub update_table_definitions {
 
     _add_visiblity_value_to_value_tables();
 
+    # 2009-03-02 arbingersys@gmail.com - Bug 423613
+    $dbh->bz_add_index('profiles', 'profiles_extern_id_idx',
+                       {TYPE => 'UNIQUE', FIELDS => [qw(extern_id)]});
     ################################################################
     # New --TABLE-- changes should go *** A B O V E *** this point #
     ################################################################