@@ -, +, @@ --- Koha/Schema/Result/BiblioFramework.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/Koha/Schema/Result/BiblioFramework.pm +++ a/Koha/Schema/Result/BiblioFramework.pm @@ -84,5 +84,8 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); -# You can replace this text with custom content, and it will be preserved on regeneration +__PACKAGE__->add_columns( + '+is_default' => { is_boolean => 1 }, +); + 1; --