https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35635
--- Comment #52 from Jonathan Druart <[email protected]> --- Created attachment 179165 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=179165&action=edit Bug 35635: Add missing NOT NULL clause in db rev Jenkins job testing the update DB was failing: 18:11:48 koha_1 | +++ b/Koha/Schema/Result/BorrowerAttributeType.pm 18:11:48 koha_1 | @@ -141,7 +141,7 @@ defines if this field is copied to anonymized_borrower_attributes (1 for yes, 0 18:11:48 koha_1 | 18:11:48 koha_1 | data_type: 'tinyint' 18:11:48 koha_1 | default_value: 0 18:11:48 koha_1 | - is_nullable: 0 18:11:48 koha_1 | + is_nullable: 1 18:11:48 koha_1 | 18:11:48 koha_1 | defines if the attribute is mandatory or not in the staff interface 18:11:48 koha_1 | 18:11:48 koha_1 | @@ -149,7 +149,7 @@ defines if the attribute is mandatory or not in the staff interface 18:11:48 koha_1 | 18:11:48 koha_1 | data_type: 'tinyint' 18:11:48 koha_1 | default_value: 0 18:11:48 koha_1 | - is_nullable: 0 18:11:48 koha_1 | + is_nullable: 1 18:11:48 koha_1 | 18:11:48 koha_1 | defines if the attribute is mandatory or not in the OPAC 18:11:48 koha_1 | 18:11:48 koha_1 | @@ -185,9 +185,9 @@ __PACKAGE__->add_columns( 18:11:48 koha_1 | "keep_for_pseudonymization", 18:11:48 koha_1 | { data_type => "tinyint", default_value => 0, is_nullable => 0 }, 18:11:48 koha_1 | "mandatory", 18:11:48 koha_1 | - { data_type => "tinyint", default_value => 0, is_nullable => 0 }, 18:11:48 koha_1 | + { data_type => "tinyint", default_value => 0, is_nullable => 1 }, 18:11:48 koha_1 | "opac_mandatory", 18:11:48 koha_1 | - { data_type => "tinyint", default_value => 0, is_nullable => 0 }, 18:11:49 koha_1 | + { data_type => "tinyint", default_value => 0, is_nullable => 1 }, -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
