File tree 2 files changed +3
-3
lines changed
installer/data/mysql/db_revs
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ use vars qw{ $VERSION };
29
29
# - #4 : the developer version. The 4th number is the database subversion.
30
30
# used by developers when the database changes. updatedatabase take care of the changes itself
31
31
# and is automatically called by Auth.pm when needed.
32
- $VERSION = " 24.12.00.001 " ;
32
+ $VERSION = " 24.12.00.002 " ;
33
33
34
34
sub version {
35
35
return $VERSION ;
Original file line number Diff line number Diff line change 3
3
4
4
return {
5
5
bug_number => " 37292" ,
6
- description => " 'oauth_access_tokens.expires' needs an index " ,
6
+ description => " Add index on 'oauth_access_tokens.expires'" ,
7
7
up => sub {
8
8
my ($args ) = @_ ;
9
9
my ( $dbh , $out ) = @$args {qw( dbh out) };
14
14
ALTER TABLE `oauth_access_tokens` ADD INDEX `expires` (`expires`)
15
15
}
16
16
);
17
- say_success( $out , " Added new index on 'oauth_access_tokens.expires'" );
17
+ say_success( $out , " Added index on 'oauth_access_tokens.expires'" );
18
18
}
19
19
},
20
20
};
You can’t perform that action at this time.
0 commit comments