|
Lines 47-52
foreign key for the biblio.biblionumber that this issue is attached to
Link Here
|
| 47 |
|
47 |
|
| 48 |
foreign key to the subscription.subscriptionid that this issue is part of |
48 |
foreign key to the subscription.subscriptionid that this issue is part of |
| 49 |
|
49 |
|
|
|
50 |
=head2 aqbooksellerid |
| 51 |
|
| 52 |
data_type: 'integer' |
| 53 |
is_foreign_key: 1 |
| 54 |
is_nullable: 1 |
| 55 |
|
| 56 |
the subscription's bookseller at the time of creation (used for claims) |
| 57 |
|
| 50 |
=head2 serialseq |
58 |
=head2 serialseq |
| 51 |
|
59 |
|
| 52 |
data_type: 'varchar' |
60 |
data_type: 'varchar' |
|
Lines 151-156
__PACKAGE__->add_columns(
Link Here
|
| 151 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
159 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
| 152 |
"subscriptionid", |
160 |
"subscriptionid", |
| 153 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
161 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
|
|
162 |
"aqbooksellerid", |
| 163 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
| 154 |
"serialseq", |
164 |
"serialseq", |
| 155 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, |
165 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, |
| 156 |
"serialseq_x", |
166 |
"serialseq_x", |
|
Lines 191-196
__PACKAGE__->set_primary_key("serialid");
Link Here
|
| 191 |
|
201 |
|
| 192 |
=head1 RELATIONS |
202 |
=head1 RELATIONS |
| 193 |
|
203 |
|
|
|
204 |
=head2 aqbooksellerid |
| 205 |
|
| 206 |
Type: belongs_to |
| 207 |
|
| 208 |
Related object: L<Koha::Schema::Result::Aqbookseller> |
| 209 |
|
| 210 |
=cut |
| 211 |
|
| 212 |
__PACKAGE__->belongs_to( |
| 213 |
"aqbooksellerid", |
| 214 |
"Koha::Schema::Result::Aqbookseller", |
| 215 |
{ id => "aqbooksellerid" }, |
| 216 |
{ |
| 217 |
is_deferrable => 1, |
| 218 |
join_type => "LEFT", |
| 219 |
on_delete => "RESTRICT", |
| 220 |
on_update => "RESTRICT", |
| 221 |
}, |
| 222 |
); |
| 223 |
|
| 194 |
=head2 biblionumber |
224 |
=head2 biblionumber |
| 195 |
|
225 |
|
| 196 |
Type: belongs_to |
226 |
Type: belongs_to |
|
Lines 237-244
__PACKAGE__->belongs_to(
Link Here
|
| 237 |
); |
267 |
); |
| 238 |
|
268 |
|
| 239 |
|
269 |
|
| 240 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 |
270 |
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2022-07-31 21:00:41 |
| 241 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SD7llCvCO+/67cXetzRKPQ |
271 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zqosYcct1Mu/MqsBKHWJmA |
| 242 |
|
272 |
|
| 243 |
|
273 |
|
| 244 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
274 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |