From 6d61ac3b6224cd2e51aabc7982e8af153c16418d Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Wed, 4 Apr 2018 12:40:22 +0200 Subject: [PATCH] Bug 18818: DBIC Schema changes Signed-off-by: Katrin Fischer --- Koha/Schema/Result/Category.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index 2f877bb..60e653f 100644 --- a/Koha/Schema/Result/Category.pm +++ b/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 }, -- 2.1.4