https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37511 --- Comment #20 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Katrin Fischer from comment #17)
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.
ping? -- You are receiving this mail because: You are watching all bug changes.