|
Lines 23-29
__PACKAGE__->table("aqbookseller_aliases");
Link Here
|
| 23 |
|
23 |
|
| 24 |
=head1 ACCESSORS |
24 |
=head1 ACCESSORS |
| 25 |
|
25 |
|
| 26 |
=head2 id |
26 |
=head2 alias_id |
| 27 |
|
27 |
|
| 28 |
data_type: 'integer' |
28 |
data_type: 'integer' |
| 29 |
is_auto_increment: 1 |
29 |
is_auto_increment: 1 |
|
Lines 50-56
the alias
Link Here
|
| 50 |
=cut |
50 |
=cut |
| 51 |
|
51 |
|
| 52 |
__PACKAGE__->add_columns( |
52 |
__PACKAGE__->add_columns( |
| 53 |
"id", |
53 |
"alias_id", |
| 54 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
54 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
| 55 |
"vendor_id", |
55 |
"vendor_id", |
| 56 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
56 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
|
Lines 62-74
__PACKAGE__->add_columns(
Link Here
|
| 62 |
|
62 |
|
| 63 |
=over 4 |
63 |
=over 4 |
| 64 |
|
64 |
|
| 65 |
=item * L</id> |
65 |
=item * L</alias_id> |
| 66 |
|
66 |
|
| 67 |
=back |
67 |
=back |
| 68 |
|
68 |
|
| 69 |
=cut |
69 |
=cut |
| 70 |
|
70 |
|
| 71 |
__PACKAGE__->set_primary_key("id"); |
71 |
__PACKAGE__->set_primary_key("alias_id"); |
| 72 |
|
72 |
|
| 73 |
=head1 RELATIONS |
73 |
=head1 RELATIONS |
| 74 |
|
74 |
|
|
Lines 88-95
__PACKAGE__->belongs_to(
Link Here
|
| 88 |
); |
88 |
); |
| 89 |
|
89 |
|
| 90 |
|
90 |
|
| 91 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-01 10:07:31 |
91 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-14 06:02:38 |
| 92 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9s3K0S0BfrHLN/V3X9DB1A |
92 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1y/VlLZlf+4xAL8uehDAuQ |
| 93 |
|
93 |
|
| 94 |
sub koha_object_class { |
94 |
sub koha_object_class { |
| 95 |
'Koha::Acquisition::Bookseller::Alias'; |
95 |
'Koha::Acquisition::Bookseller::Alias'; |
| 96 |
- |
|
|