https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37511 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |additional_work_needed --- Comment #17 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Something here is not quite right, please check: I was trying to clean up the DBIC schema update I missed and I get this: data_type: 'tinyint' default_value: 1 - is_nullable: 0 + is_nullable: 1 =cut @@ -103,7 +103,7 @@ __PACKAGE__->add_columns( "p_sep_by_space", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "p_cs_precedes", - { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + { data_type => "tinyint", default_value => 1, is_nullable => 1 }, The second patch here set is_nullable: 0, now the dbic run after running the database update sets is_nullable: 1. Something is not in sync. -- You are receiving this mail because: You are watching all bug changes.