File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
installer/data/mysql/db_revs Expand file tree Collapse file tree 2 files changed +4
-4
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.009 " ;
32
+ $VERSION = " 24.12.00.010 " ;
33
33
34
34
sub version {
35
35
return $VERSION ;
Original file line number Diff line number Diff line change 16
16
MODIFY COLUMN `mandatory` tinyint(1) DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the staff interface'
17
17
}
18
18
);
19
- say $out " Modified column 'borrower_attribute_types.mandatory'" ;
19
+ say_success( $out , " Modified column 'borrower_attribute_types.mandatory'" ) ;
20
20
21
21
$dbh -> do(
22
22
q{
25
25
AFTER `mandatory`
26
26
}
27
27
);
28
- say $out " Added column 'borrower_attribute_types.opac_mandatory'" ;
28
+ say_success( $out , " Added column 'borrower_attribute_types.opac_mandatory'" ) ;
29
29
30
30
$dbh -> do(
31
31
q{
32
32
UPDATE borrower_attribute_types
33
33
SET opac_mandatory = 1 WHERE mandatory = 1;
34
34
}
35
35
);
36
- say $out " Update opac_mandatory to match mandatory column" ;
36
+ say_success( $out , " Update opac_mandatory to match mandatory column" ) ;
37
37
}
38
38
},
39
39
You can’t perform that action at this time.
0 commit comments