Browse Source

Bug 14978: (RM followup) DBIx update

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
3.22.x
Tomás Cohen Arazi 9 years ago
parent
commit
3cab4d1efd
  1. 18
      Koha/Schema/Result/Issue.pm
  2. 12
      Koha/Schema/Result/Item.pm

18
Koha/Schema/Result/Issue.pm

@ -165,6 +165,20 @@ __PACKAGE__->add_columns(
__PACKAGE__->set_primary_key("issue_id"); __PACKAGE__->set_primary_key("issue_id");
=head1 UNIQUE CONSTRAINTS
=head2 C<itemnumber>
=over 4
=item * L</itemnumber>
=back
=cut
__PACKAGE__->add_unique_constraint("itemnumber", ["itemnumber"]);
=head1 RELATIONS =head1 RELATIONS
=head2 borrowernumber =head2 borrowernumber
@ -208,8 +222,8 @@ __PACKAGE__->belongs_to(
); );
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:04:51 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3JH0+3CuwwhPyebyt/z+uw # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kREecsHr6wZPiokS946BHw
__PACKAGE__->belongs_to( __PACKAGE__->belongs_to(
"borrower", "borrower",

12
Koha/Schema/Result/Item.pm

@ -540,16 +540,16 @@ __PACKAGE__->belongs_to(
}, },
); );
=head2 issues =head2 issue
Type: has_many Type: might_have
Related object: L<Koha::Schema::Result::Issue> Related object: L<Koha::Schema::Result::Issue>
=cut =cut
__PACKAGE__->has_many( __PACKAGE__->might_have(
"issues", "issue",
"Koha::Schema::Result::Issue", "Koha::Schema::Result::Issue",
{ "foreign.itemnumber" => "self.itemnumber" }, { "foreign.itemnumber" => "self.itemnumber" },
{ cascade_copy => 0, cascade_delete => 0 }, { cascade_copy => 0, cascade_delete => 0 },
@ -616,8 +616,8 @@ __PACKAGE__->might_have(
); );
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urSpNt7LBda4T5Plhi6cPw # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jkgJfulDrGaUpQ6jC40vpQ
sub effective_itemtype { sub effective_itemtype {
my ( $self ) = @_; my ( $self ) = @_;

Loading…
Cancel
Save