Bug 6725: Make patron duplicate matching flexible
[koha.git] / installer / data / mysql / atomicupdate / bug_6725.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3
4     $dbh->do( q{
5         INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES
6         ('PatronDuplicateMatchingAddFields','surname|firstname|dateofbirth', NULL,'A list of fields separated by "|" to deduplicate patrons when created','Free')
7     });
8
9     # Always end with this (adjust the bug info)
10     NewVersion( $DBversion, 6725, "Adds PatronDuplicateMatchingAddFields system preference");
11 }