From abff071b466597f8d0c30fbecd720c173da46bde Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 14 Apr 2023 08:14:55 +0200 Subject: [PATCH] Bug 33104: DBIC changes --- Koha/Schema/Result/AqbooksellerInterface.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/AqbooksellerInterface.pm b/Koha/Schema/Result/AqbooksellerInterface.pm index 6d9496ef132..c37d9d7a806 100644 --- a/Koha/Schema/Result/AqbooksellerInterface.pm +++ b/Koha/Schema/Result/AqbooksellerInterface.pm @@ -23,7 +23,7 @@ __PACKAGE__->table("aqbookseller_interfaces"); =head1 ACCESSORS -=head2 id +=head2 interface_id data_type: 'integer' is_auto_increment: 1 @@ -94,7 +94,7 @@ notes =cut __PACKAGE__->add_columns( - "id", + "interface_id", { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, "vendor_id", { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, @@ -118,13 +118,13 @@ __PACKAGE__->add_columns( =over 4 -=item * L +=item * L =back =cut -__PACKAGE__->set_primary_key("id"); +__PACKAGE__->set_primary_key("interface_id"); =head1 RELATIONS @@ -144,8 +144,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-02 14:22:08 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x1agzLqSW4QKvQq5CHKkjQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-14 06:13:36 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:trD3yQfHdRyMiHpPkMUHVw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.25.1