From 58ee5a15c0d71c584491c635bcac33b90fb84327 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 11 Mar 2015 11:52:47 -0300 Subject: [PATCH] Bug 12648: (RM followup) DBIx schema update Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Aqorder.pm | 29 ++++++++- Koha/Schema/Result/AqorderUser.pm | 99 +++++++++++++++++++++++++++++++ Koha/Schema/Result/Borrower.pm | 29 ++++++++- 3 files changed, 153 insertions(+), 4 deletions(-) create mode 100644 Koha/Schema/Result/AqorderUser.pm diff --git a/Koha/Schema/Result/Aqorder.pm b/Koha/Schema/Result/Aqorder.pm index 6d7ab2274e..4d29ef18ca 100644 --- a/Koha/Schema/Result/Aqorder.pm +++ b/Koha/Schema/Result/Aqorder.pm @@ -341,6 +341,21 @@ __PACKAGE__->set_primary_key("ordernumber"); =head1 RELATIONS +=head2 aqorder_users + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "aqorder_users", + "Koha::Schema::Result::AqorderUser", + { "foreign.ordernumber" => "self.ordernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + =head2 aqorders_items Type: has_many @@ -481,9 +496,19 @@ __PACKAGE__->belongs_to( }, ); +=head2 borrowernumbers + +Type: many_to_many + +Composing rels: L -> borrowernumber + +=cut + +__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber"); + -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-02-05 15:20:11 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MfXZ8f2Md6X+C1fVU8TtOg +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-03-11 11:50:38 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BbhBIc0Bvj3Olf/dYzDjnw # You can replace this text with custom content, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/AqorderUser.pm b/Koha/Schema/Result/AqorderUser.pm new file mode 100644 index 0000000000..54750d4ce5 --- /dev/null +++ b/Koha/Schema/Result/AqorderUser.pm @@ -0,0 +1,99 @@ +use utf8; +package Koha::Schema::Result::AqorderUser; + +# Created by DBIx::Class::Schema::Loader +# DO NOT MODIFY THE FIRST PART OF THIS FILE + +=head1 NAME + +Koha::Schema::Result::AqorderUser + +=cut + +use strict; +use warnings; + +use base 'DBIx::Class::Core'; + +=head1 TABLE: C + +=cut + +__PACKAGE__->table("aqorder_users"); + +=head1 ACCESSORS + +=head2 ordernumber + + data_type: 'integer' + is_foreign_key: 1 + is_nullable: 0 + +=head2 borrowernumber + + data_type: 'integer' + is_foreign_key: 1 + is_nullable: 0 + +=cut + +__PACKAGE__->add_columns( + "ordernumber", + { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, + "borrowernumber", + { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, +); + +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=item * L + +=back + +=cut + +__PACKAGE__->set_primary_key("ordernumber", "borrowernumber"); + +=head1 RELATIONS + +=head2 borrowernumber + +Type: belongs_to + +Related object: L + +=cut + +__PACKAGE__->belongs_to( + "borrowernumber", + "Koha::Schema::Result::Borrower", + { borrowernumber => "borrowernumber" }, + { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, +); + +=head2 ordernumber + +Type: belongs_to + +Related object: L + +=cut + +__PACKAGE__->belongs_to( + "ordernumber", + "Koha::Schema::Result::Aqorder", + { ordernumber => "ordernumber" }, + { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, +); + + +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-03-11 11:50:38 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6mhRlYUeJnpQIJ2P9WTbHQ + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration +1; diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index 4dbd0ce68b..dd2232bb45 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -678,6 +678,21 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 aqorder_users + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "aqorder_users", + "Koha::Schema::Result::AqorderUser", + { "foreign.borrowernumber" => "self.borrowernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + =head2 borrower_attributes Type: has_many @@ -1128,9 +1143,19 @@ Composing rels: L -> course __PACKAGE__->many_to_many("courses", "course_instructors", "course"); +=head2 ordernumbers + +Type: many_to_many + +Composing rels: L -> ordernumber + +=cut + +__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); + -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-12-31 14:08:18 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mOTD/GsDpo3RPjUjTHrLRQ +# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-03-11 11:50:38 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4wVgO/FIFHQV+AxzXc+k8g # You can replace this text with custom content, and it will be preserved on regeneration -- 2.20.1