From de5a0b15a39fba67242fd90b16453717c6d340e5 Mon Sep 17 00:00:00 2001 From: Nicolas Legrand Date: Wed, 2 Oct 2019 14:28:43 +0200 Subject: [PATCH] Bug 13881: Update Schema MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Séverine QUEUNE Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize --- Koha/Schema/Result/Branch.pm | 19 +++++++- Koha/Schema/Result/Desk.pm | 92 ++++++++++++++++++++++++++++++++++++ 2 files changed, 109 insertions(+), 2 deletions(-) create mode 100644 Koha/Schema/Result/Desk.pm diff --git a/Koha/Schema/Result/Branch.pm b/Koha/Schema/Result/Branch.pm index 92aa05b220..7e1850ca6f 100644 --- a/Koha/Schema/Result/Branch.pm +++ b/Koha/Schema/Result/Branch.pm @@ -503,6 +503,21 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 desks + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "desks", + "Koha::Schema::Result::Desk", + { "foreign.branchcode" => "self.branchcode" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + =head2 edifact_eans Type: has_many @@ -729,8 +744,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-10 09:57:08 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:juk2V/100I2EIrxFNhjI7A +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-25 09:27:24 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r2wn2GewgIc5+ShIdgmd9g __PACKAGE__->add_columns( '+pickup_location' => { is_boolean => 1 } diff --git a/Koha/Schema/Result/Desk.pm b/Koha/Schema/Result/Desk.pm new file mode 100644 index 0000000000..a72be1b21f --- /dev/null +++ b/Koha/Schema/Result/Desk.pm @@ -0,0 +1,92 @@ +use utf8; +package Koha::Schema::Result::Desk; + +# Created by DBIx::Class::Schema::Loader +# DO NOT MODIFY THE FIRST PART OF THIS FILE + +=head1 NAME + +Koha::Schema::Result::Desk + +=cut + +use strict; +use warnings; + +use base 'DBIx::Class::Core'; + +=head1 TABLE: C + +=cut + +__PACKAGE__->table("desks"); + +=head1 ACCESSORS + +=head2 desk_id + + data_type: 'integer' + is_auto_increment: 1 + is_nullable: 0 + +=head2 desk_name + + data_type: 'varchar' + default_value: (empty string) + is_nullable: 0 + size: 100 + +=head2 branchcode + + data_type: 'varchar' + is_foreign_key: 1 + is_nullable: 0 + size: 10 + +=cut + +__PACKAGE__->add_columns( + "desk_id", + { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, + "desk_name", + { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, + "branchcode", + { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, +); + +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=back + +=cut + +__PACKAGE__->set_primary_key("desk_id"); + +=head1 RELATIONS + +=head2 branchcode + +Type: belongs_to + +Related object: L + +=cut + +__PACKAGE__->belongs_to( + "branchcode", + "Koha::Schema::Result::Branch", + { branchcode => "branchcode" }, + { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, +); + + +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-10-02 13:43:57 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IklOycKlChqv9Tftm8rjqA + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration +1; -- 2.39.5