Bugzilla – Attachment 36807 Details for
Bug 12648
Link patrons to an order
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12648: (RM followup) DBIx schema update
Bug-12648-RM-followup-DBIx-schema-update.patch (text/plain), 5.06 KB, created by
Tomás Cohen Arazi (tcohen)
on 2015-03-11 14:53:36 UTC
(
hide
)
Description:
Bug 12648: (RM followup) DBIx schema update
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2015-03-11 14:53:36 UTC
Size:
5.06 KB
patch
obsolete
>From 58ee5a15c0d71c584491c635bcac33b90fb84327 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@gmail.com> >Date: Wed, 11 Mar 2015 11:52:47 -0300 >Subject: [PATCH] Bug 12648: (RM followup) DBIx schema update > >Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> >--- > 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 6d7ab22..4d29ef1 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<Koha::Schema::Result::AqorderUser> >+ >+=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</aqorder_users> -> 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 0000000..54750d4 >--- /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<aqorder_users> >+ >+=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</ordernumber> >+ >+=item * L</borrowernumber> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("ordernumber", "borrowernumber"); >+ >+=head1 RELATIONS >+ >+=head2 borrowernumber >+ >+Type: belongs_to >+ >+Related object: L<Koha::Schema::Result::Borrower> >+ >+=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<Koha::Schema::Result::Aqorder> >+ >+=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 4dbd0ce..dd2232b 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<Koha::Schema::Result::AqorderUser> >+ >+=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_instructors> -> course > > __PACKAGE__->many_to_many("courses", "course_instructors", "course"); > >+=head2 ordernumbers >+ >+Type: many_to_many >+ >+Composing rels: L</aqorder_users> -> 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.3.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12648
:
30024
|
30025
|
30026
|
30027
|
30988
|
30989
|
30990
|
30991
|
31273
|
31960
|
31961
|
32230
|
33186
|
33187
|
33188
|
33189
|
33190
|
33191
|
33192
|
33193
|
34224
|
34225
|
34226
|
34227
|
34228
|
34229
|
34230
|
34231
|
34477
|
34487
|
34488
|
34489
|
34490
|
34491
|
34492
|
34493
|
34494
|
34495
|
35056
|
35058
|
35059
|
35060
|
35061
|
35062
|
35063
|
35064
|
35065
|
35066
|
36795
|
36796
|
36797
|
36798
|
36799
|
36800
|
36801
|
36802
|
36803
|
36804
|
36805
| 36807 |
36810
|
36817