@@ -, +, @@ --- Koha/Schema/Result/Category.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/Category.pm +++ a/Koha/Schema/Result/Category.pm @@ -123,6 +123,12 @@ __PACKAGE__->table("categories"); is_nullable: 0 size: 7 +=head2 quick_add_display + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -175,6 +181,8 @@ __PACKAGE__->add_columns( is_nullable => 0, size => 7, }, + "quick_add_display", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -267,8 +275,8 @@ __PACKAGE__->might_have( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TGAiiFICSjlKNvnfa87kFQ +# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-04-04 12:38:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:04yaP2Mr29CsaK7XCbgG+g __PACKAGE__->add_columns( '+quick_add_display' => { is_boolean => 1 }, --