Bug 7295: (follow-up) update DBIx::Class schema classes
[koha.git] / Koha / Schema / Result / Borrower.pm
index 3fe4362..3d9f9ae 100644 (file)
@@ -606,6 +606,21 @@ __PACKAGE__->has_many(
   { cascade_copy => 0, cascade_delete => 0 },
 );
 
+=head2 aqbasketusers
+
+Type: has_many
+
+Related object: L<Koha::Schema::Result::Aqbasketuser>
+
+=cut
+
+__PACKAGE__->has_many(
+  "aqbasketusers",
+  "Koha::Schema::Result::Aqbasketuser",
+  { "foreign.borrowernumber" => "self.borrowernumber" },
+  { cascade_copy => 0, cascade_delete => 0 },
+);
+
 =head2 aqbudgetborrowers
 
 Type: has_many
@@ -636,6 +651,21 @@ __PACKAGE__->has_many(
   { cascade_copy => 0, cascade_delete => 0 },
 );
 
+=head2 borrower_debarments
+
+Type: has_many
+
+Related object: L<Koha::Schema::Result::BorrowerDebarment>
+
+=cut
+
+__PACKAGE__->has_many(
+  "borrower_debarments",
+  "Koha::Schema::Result::BorrowerDebarment",
+  { "foreign.borrowernumber" => "self.borrowernumber" },
+  { cascade_copy => 0, cascade_delete => 0 },
+);
+
 =head2 borrower_files
 
 Type: has_many
@@ -801,6 +831,36 @@ __PACKAGE__->has_many(
   { cascade_copy => 0, cascade_delete => 0 },
 );
 
+=head2 patron_list_patrons
+
+Type: has_many
+
+Related object: L<Koha::Schema::Result::PatronListPatron>
+
+=cut
+
+__PACKAGE__->has_many(
+  "patron_list_patrons",
+  "Koha::Schema::Result::PatronListPatron",
+  { "foreign.borrowernumber" => "self.borrowernumber" },
+  { cascade_copy => 0, cascade_delete => 0 },
+);
+
+=head2 patron_lists
+
+Type: has_many
+
+Related object: L<Koha::Schema::Result::PatronList>
+
+=cut
+
+__PACKAGE__->has_many(
+  "patron_lists",
+  "Koha::Schema::Result::PatronList",
+  { "foreign.owner" => "self.borrowernumber" },
+  { cascade_copy => 0, cascade_delete => 0 },
+);
+
 =head2 patroncards
 
 Type: has_many
@@ -981,6 +1041,16 @@ __PACKAGE__->has_many(
   { cascade_copy => 0, cascade_delete => 0 },
 );
 
+=head2 basketnoes
+
+Type: many_to_many
+
+Composing rels: L</aqbasketusers> -> basketno
+
+=cut
+
+__PACKAGE__->many_to_many("basketnoes", "aqbasketusers", "basketno");
+
 =head2 budgets
 
 Type: many_to_many
@@ -1002,8 +1072,8 @@ Composing rels: L</course_instructors> -> course
 __PACKAGE__->many_to_many("courses", "course_instructors", "course");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RTqzsubViQ3dHnXCUKqgNg
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-31 16:31:19
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:z4kW3xYX1CyrwvGdZu32nA
 
 
 # You can replace this text with custom content, and it will be preserved on regeneration