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 },
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>