Bug 6725: DBRev 20.06.00.025
[koha.git] / installer / data / mysql / atomicupdate / bug_6725.perl
diff --git a/installer/data/mysql/atomicupdate/bug_6725.perl b/installer/data/mysql/atomicupdate/bug_6725.perl
deleted file mode 100644 (file)
index 9507062..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-$DBversion = 'XXX'; # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-
-    $dbh->do( q{
-        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES
-        ('PatronDuplicateMatchingAddFields','surname|firstname|dateofbirth', NULL,'A list of fields separated by "|" to deduplicate patrons when created','Free')
-    });
-
-    # Always end with this (adjust the bug info)
-    NewVersion( $DBversion, 6725, "Adds PatronDuplicateMatchingAddFields system preference");
-}