From 558ff41b85f3455ef5033afc199ae94d0834cca2 Mon Sep 17 00:00:00 2001 From: Nicolas Legrand Date: Wed, 2 Oct 2019 14:28:43 +0200 Subject: [PATCH] Bug 13881: Schema file DO NOT PUSH! --- Koha/Schema/Result/Desk.pm | 92 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 Koha/Schema/Result/Desk.pm diff --git a/Koha/Schema/Result/Desk.pm b/Koha/Schema/Result/Desk.pm new file mode 100644 index 0000000..a72be1b --- /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.1.4