Bug 6739: (follow-up) update DBIC schema classes
authorGalen Charlton <gmc@esilibrary.com>
Mon, 5 May 2014 02:00:36 +0000 (02:00 +0000)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 5 May 2014 02:00:36 +0000 (02:00 +0000)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Koha/Schema/Result/Category.pm

index 12ac12f..7052486 100644 (file)
@@ -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