Bug 14045: DBIC Changes
authorJonathan Druart <jonathan.druart@koha-community.org>
Wed, 13 May 2015 15:53:19 +0000 (17:53 +0200)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 13 Oct 2015 14:13:24 +0000 (11:13 -0300)
Signed-off-by: Nicolas Legrand <nicolas.legrand@bulac.fr>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha/Schema/Result/BranchBorrowerCircRule.pm
Koha/Schema/Result/DefaultBorrowerCircRule.pm
Koha/Schema/Result/DefaultBranchCircRule.pm
Koha/Schema/Result/DefaultCircRule.pm
Koha/Schema/Result/Issuingrule.pm

index fce2914..1c8ce6a 100644 (file)
@@ -42,6 +42,11 @@ __PACKAGE__->table("branch_borrower_circ_rules");
   data_type: 'integer'
   is_nullable: 1
 
+=head2 maxonsiteissueqty
+
+  data_type: 'integer'
+  is_nullable: 1
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -51,6 +56,8 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 },
   "maxissueqty",
   { data_type => "integer", is_nullable => 1 },
+  "maxonsiteissueqty",
+  { data_type => "integer", is_nullable => 1 },
 );
 
 =head1 PRIMARY KEY
@@ -100,8 +107,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:X24Sil3WTnxoeAa/16tpUQ
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MrhgFhfjV71AC5PXmvRPzg
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
index 0f9c8f1..87bf681 100644 (file)
@@ -35,6 +35,11 @@ __PACKAGE__->table("default_borrower_circ_rules");
   data_type: 'integer'
   is_nullable: 1
 
+=head2 maxonsiteissueqty
+
+  data_type: 'integer'
+  is_nullable: 1
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -42,6 +47,8 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 },
   "maxissueqty",
   { data_type => "integer", is_nullable => 1 },
+  "maxonsiteissueqty",
+  { data_type => "integer", is_nullable => 1 },
 );
 
 =head1 PRIMARY KEY
@@ -74,8 +81,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bZVuSuLu0IxPcJMaUUjbSw
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQ8PdQhM6+5K582+AL5ZXQ
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
index 55fd2b2..5963b05 100644 (file)
@@ -35,6 +35,11 @@ __PACKAGE__->table("default_branch_circ_rules");
   data_type: 'integer'
   is_nullable: 1
 
+=head2 maxonsiteissueqty
+
+  data_type: 'integer'
+  is_nullable: 1
+
 =head2 holdallowed
 
   data_type: 'tinyint'
@@ -53,6 +58,8 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 },
   "maxissueqty",
   { data_type => "integer", is_nullable => 1 },
+  "maxonsiteissueqty",
+  { data_type => "integer", is_nullable => 1 },
   "holdallowed",
   { data_type => "tinyint", is_nullable => 1 },
   "returnbranch",
@@ -89,8 +96,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Uw1Y82CgbAY8ndLOucN70g
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p95r3cEx85NtMTEAgiRgBw
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
index 7bd1564..5e0f266 100644 (file)
@@ -35,6 +35,11 @@ __PACKAGE__->table("default_circ_rules");
   data_type: 'integer'
   is_nullable: 1
 
+=head2 maxonsiteissueqty
+
+  data_type: 'integer'
+  is_nullable: 1
+
 =head2 holdallowed
 
   data_type: 'integer'
@@ -58,6 +63,8 @@ __PACKAGE__->add_columns(
   },
   "maxissueqty",
   { data_type => "integer", is_nullable => 1 },
+  "maxonsiteissueqty",
+  { data_type => "integer", is_nullable => 1 },
   "holdallowed",
   { data_type => "integer", is_nullable => 1 },
   "returnbranch",
@@ -77,8 +84,8 @@ __PACKAGE__->add_columns(
 __PACKAGE__->set_primary_key("singleton");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:I4hY1uJ+wDoWPIiZj5amVg
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TLEpv+H3v7P3psVl+WMA0Q
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration
index 438c23b..53de573 100644 (file)
@@ -96,6 +96,11 @@ __PACKAGE__->table("issuingrules");
   data_type: 'integer'
   is_nullable: 1
 
+=head2 maxonsiteissueqty
+
+  data_type: 'integer'
+  is_nullable: 1
+
 =head2 issuelength
 
   data_type: 'integer'
@@ -203,6 +208,8 @@ __PACKAGE__->add_columns(
   { data_type => "varchar", is_nullable => 1, size => 100 },
   "maxissueqty",
   { data_type => "integer", is_nullable => 1 },
+  "maxonsiteissueqty",
+  { data_type => "integer", is_nullable => 1 },
   "issuelength",
   { data_type => "integer", is_nullable => 1 },
   "lengthunit",
@@ -253,8 +260,8 @@ __PACKAGE__->add_columns(
 __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-12-19 07:00:40
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CE8yuYC5QgPHI2GOjiT28w
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:H6LuTmUWdqmjCc5L4hsTQA
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration