2 package Koha
::Schema
::Result
::CategoriesBranch
;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 Koha::Schema::Result::CategoriesBranch
16 use base
'DBIx::Class::Core';
18 =head1 TABLE: C<categories_branches>
22 __PACKAGE__
->table("categories_branches");
42 __PACKAGE__
->add_columns(
44 { data_type
=> "varchar", is_foreign_key
=> 1, is_nullable
=> 1, size
=> 10 },
46 { data_type
=> "varchar", is_foreign_key
=> 1, is_nullable
=> 1, size
=> 10 },
55 Related object: L<Koha::Schema::Result::Branch>
59 __PACKAGE__
->belongs_to(
61 "Koha::Schema::Result::Branch",
62 { branchcode
=> "branchcode" },
66 on_delete
=> "CASCADE",
67 on_update
=> "CASCADE",
75 Related object: L<Koha::Schema::Result::Category>
79 __PACKAGE__
->belongs_to(
81 "Koha::Schema::Result::Category",
82 { categorycode
=> "categorycode" },
86 on_delete
=> "CASCADE",
87 on_update
=> "CASCADE",
92 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
93 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9fXKFDUQsOx+uqF+slRhSw
96 # You can replace this text with custom content, and it will be preserved on regeneration