Skip to content

Commit 6eb4c9c

Browse files
committed
Bug 35635: DBRev 24.12.00.010
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
1 parent 97530ed commit 6eb4c9c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Koha.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use vars qw{ $VERSION };
2929
# - #4 : the developer version. The 4th number is the database subversion.
3030
# used by developers when the database changes. updatedatabase take care of the changes itself
3131
# and is automatically called by Auth.pm when needed.
32-
$VERSION = "24.12.00.009";
32+
$VERSION = "24.12.00.010";
3333

3434
sub version {
3535
return $VERSION;

installer/data/mysql/atomicupdate/bug_35635_add_opac_mandatory.pl renamed to installer/data/mysql/db_revs/241200010.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
MODIFY COLUMN `mandatory` tinyint(1) DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the staff interface'
1717
}
1818
);
19-
say $out "Modified column 'borrower_attribute_types.mandatory'";
19+
say_success( $out, "Modified column 'borrower_attribute_types.mandatory'" );
2020

2121
$dbh->do(
2222
q{
@@ -25,15 +25,15 @@
2525
AFTER `mandatory`
2626
}
2727
);
28-
say $out "Added column 'borrower_attribute_types.opac_mandatory'";
28+
say_success( $out, "Added column 'borrower_attribute_types.opac_mandatory'" );
2929

3030
$dbh->do(
3131
q{
3232
UPDATE borrower_attribute_types
3333
SET opac_mandatory = 1 WHERE mandatory = 1;
3434
}
3535
);
36-
say $out "Update opac_mandatory to match mandatory column";
36+
say_success( $out, "Update opac_mandatory to match mandatory column" );
3737
}
3838
},
3939

0 commit comments

Comments
 (0)