Skip to content

Commit 7c6c3e8

Browse files
committed
Bug 37292: DBRev 24.12.00.002
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
1 parent 2e63ece commit 7c6c3e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Koha.pm

+1-1
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.001";
32+
$VERSION = "24.12.00.002";
3333

3434
sub version {
3535
return $VERSION;

installer/data/mysql/atomicupdate/bug_37292.pl installer/data/mysql/db_revs/241200002.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
return {
55
bug_number => "37292",
6-
description => "'oauth_access_tokens.expires' needs an index",
6+
description => "Add index on 'oauth_access_tokens.expires'",
77
up => sub {
88
my ($args) = @_;
99
my ( $dbh, $out ) = @$args{qw(dbh out)};
@@ -14,7 +14,7 @@
1414
ALTER TABLE `oauth_access_tokens` ADD INDEX `expires` (`expires`)
1515
}
1616
);
17-
say_success( $out, "Added new index on 'oauth_access_tokens.expires'" );
17+
say_success( $out, "Added index on 'oauth_access_tokens.expires'" );
1818
}
1919
},
2020
};

0 commit comments

Comments
 (0)