Bug 4461: dbic schema update
[koha.git] / Koha / Schema / Result / BorrowerAttributeTypesBranch.pm
blob23451700903101ea6156918c7b62d9a20ad865cb
1 use utf8;
2 package Koha::Schema::Result::BorrowerAttributeTypesBranch;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::BorrowerAttributeTypesBranch
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<borrower_attribute_types_branches>
20 =cut
22 __PACKAGE__->table("borrower_attribute_types_branches");
24 =head1 ACCESSORS
26 =head2 bat_code
28 data_type: 'varchar'
29 is_foreign_key: 1
30 is_nullable: 1
31 size: 10
33 =head2 b_branchcode
35 data_type: 'varchar'
36 is_foreign_key: 1
37 is_nullable: 1
38 size: 10
40 =cut
42 __PACKAGE__->add_columns(
43 "bat_code",
44 { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
45 "b_branchcode",
46 { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
49 =head1 RELATIONS
51 =head2 b_branchcode
53 Type: belongs_to
55 Related object: L<Koha::Schema::Result::Branch>
57 =cut
59 __PACKAGE__->belongs_to(
60 "b_branchcode",
61 "Koha::Schema::Result::Branch",
62 { branchcode => "b_branchcode" },
64 is_deferrable => 1,
65 join_type => "LEFT",
66 on_delete => "CASCADE",
67 on_update => "RESTRICT",
71 =head2 bat_code
73 Type: belongs_to
75 Related object: L<Koha::Schema::Result::BorrowerAttributeType>
77 =cut
79 __PACKAGE__->belongs_to(
80 "bat_code",
81 "Koha::Schema::Result::BorrowerAttributeType",
82 { code => "bat_code" },
84 is_deferrable => 1,
85 join_type => "LEFT",
86 on_delete => "CASCADE",
87 on_update => "RESTRICT",
92 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
93 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MA/VDd/K/RTgZ9TLy0K1gw
96 # You can replace this text with custom content, and it will be preserved on regeneration