View | Details | Raw Unified | Return to bug 18427
Collapse All | Expand All

(-)a/Koha/Schema/Result/Serialitem.pm (-7 / +4 lines)
Lines 44-52 __PACKAGE__->add_columns( Link Here
44
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
44
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
45
);
45
);
46
46
47
=head1 UNIQUE CONSTRAINTS
47
=head1 PRIMARY KEY
48
49
=head2 C<serialitemsidx>
50
48
51
=over 4
49
=over 4
52
50
Lines 56-62 __PACKAGE__->add_columns( Link Here
56
54
57
=cut
55
=cut
58
56
59
__PACKAGE__->add_unique_constraint("serialitemsidx", ["itemnumber"]);
57
__PACKAGE__->set_primary_key("itemnumber");
60
58
61
=head1 RELATIONS
59
=head1 RELATIONS
62
60
Lines 91-98 __PACKAGE__->belongs_to( Link Here
91
);
89
);
92
90
93
91
94
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
92
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-13 13:53:21
95
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JZcKy2QIB2c39vgpntWahQ
93
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Z43jqmURevaJeui7l8ThlQ
96
94
97
95
98
# You can replace this text with custom content, and it will be preserved on regeneration
96
# You can replace this text with custom content, and it will be preserved on regeneration
99
- 

Return to bug 18427