Bug 31673: (bug 31086 follow-up) Drop and constraint to allow updating column
[koha.git] / installer / data / mysql / db_revs / 220600061.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => "31333",
5     description => "Add new suggestionPatronCategoryExceptions system preference",
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do(q{INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('suggestionPatronCategoryExceptions', '', '', 'List the patron categories not affected by suggestion system preference if on', 'Free') });
11     },
12 };