Bug 14695 - Update DB Schema file
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 29 Dec 2015 19:13:25 +0000 (19:13 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Sat, 3 Sep 2016 00:17:55 +0000 (00:17 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jason M. Burds <JBurds@dubuque.lib.ia.us>
Signed-off-by: Benjamin Rokseth <benjamin.rokseth@kul.oslo.kommune.no>
Koha/Schema/Result/Issuingrule.pm

index f782456..50417e2 100644 (file)
@@ -159,6 +159,12 @@ __PACKAGE__->table("issuingrules");
   default_value: 0
   is_nullable: 0
 
+=head2 holds_per_record
+
+  data_type: 'smallint'
+  default_value: 1
+  is_nullable: 0
+
 =head2 branchcode
 
   data_type: 'varchar'
@@ -247,6 +253,8 @@ __PACKAGE__->add_columns(
   { data_type => "tinyint", default_value => 0, is_nullable => 1 },
   "reservesallowed",
   { data_type => "smallint", default_value => 0, is_nullable => 0 },
+  "holds_per_record",
+  { data_type => "smallint", default_value => 1, is_nullable => 0 },
   "branchcode",
   { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
   "overduefinescap",
@@ -276,8 +284,8 @@ __PACKAGE__->add_columns(
 __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 15:26:16
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K/8SKpDjba5CM4+WPZtWPw
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-28 16:26:37
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/3xm7W/T/nWlYVlokMTgjQ
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration