Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

104 lines
1.8 KiB

use utf8;
package Koha::Schema::Result::DefaultBranchItemRule;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
Koha::Schema::Result::DefaultBranchItemRule
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<default_branch_item_rules>
=cut
__PACKAGE__->table("default_branch_item_rules");
=head1 ACCESSORS
=head2 itemtype
data_type: 'varchar'
is_foreign_key: 1
is_nullable: 0
size: 10
=head2 holdallowed
data_type: 'tinyint'
is_nullable: 1
=head2 hold_fulfillment_policy
data_type: 'enum'
default_value: 'any'
extra: {list => ["any","homebranch","holdingbranch"]}
is_nullable: 0
=head2 returnbranch
data_type: 'varchar'
is_nullable: 1
size: 15
=cut
__PACKAGE__->add_columns(
"itemtype",
{ data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 },
"holdallowed",
{ data_type => "tinyint", is_nullable => 1 },
"hold_fulfillment_policy",
{
data_type => "enum",
default_value => "any",
extra => { list => ["any", "homebranch", "holdingbranch"] },
is_nullable => 0,
},
"returnbranch",
{ data_type => "varchar", is_nullable => 1, size => 15 },
);
=head1 PRIMARY KEY
=over 4
=item * L</itemtype>
=back
=cut
__PACKAGE__->set_primary_key("itemtype");
=head1 RELATIONS
=head2 itemtype
Type: belongs_to
Related object: L<Koha::Schema::Result::Itemtype>
=cut
__PACKAGE__->belongs_to(
"itemtype",
"Koha::Schema::Result::Itemtype",
{ itemtype => "itemtype" },
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
);
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-29 10:32:00
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+dEOJjQezQNGILloXC2HfQ
# You can replace this text with custom content, and it will be preserved on regeneration
1;