From ed30c16dc2e26a63a9349060e80cd62b55017450 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 5 May 2014 02:00:36 +0000 Subject: [PATCH] Bug 6739: (follow-up) update DBIC schema classes Signed-off-by: Galen Charlton --- 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 12ac12f605..7052486cab 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -102,6 +102,12 @@ __PACKAGE__->table("categories"); is_nullable: 0 size: 1 +=head2 blockexpiredpatronopacactions + + data_type: 'tinyint' + default_value: -1 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -133,6 +139,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "category_type", { data_type => "varchar", default_value => "A", is_nullable => 0, size => 1 }, + "blockexpiredpatronopacactions", + { data_type => "tinyint", default_value => -1, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -225,8 +233,8 @@ __PACKAGE__->might_have( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lert5/PnaztNZ9rmoGc2Gg +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-05 02:00:18 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:21IkmwMfRevsRHU9ezaIKg # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2