use utf8; package Koha::Schema::Result::DefaultBorrowerCircRule; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE =head1 NAME Koha::Schema::Result::DefaultBorrowerCircRule =cut use strict; use warnings; use base 'DBIx::Class::Core'; =head1 TABLE: C =cut __PACKAGE__->table("default_borrower_circ_rules"); =head1 ACCESSORS =head2 categorycode data_type: 'varchar' is_foreign_key: 1 is_nullable: 0 size: 10 =head2 maxissueqty data_type: 'integer' is_nullable: 1 =head2 maxonsiteissueqty data_type: 'integer' is_nullable: 1 =cut __PACKAGE__->add_columns( "categorycode", { data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, "maxissueqty", { data_type => "integer", is_nullable => 1 }, "maxonsiteissueqty", { data_type => "integer", is_nullable => 1 }, ); =head1 PRIMARY KEY =over 4 =item * L =back =cut __PACKAGE__->set_primary_key("categorycode"); =head1 RELATIONS =head2 categorycode Type: belongs_to Related object: L =cut __PACKAGE__->belongs_to( "categorycode", "Koha::Schema::Result::Category", { categorycode => "categorycode" }, { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, ); # Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQ8PdQhM6+5K582+AL5ZXQ # You can replace this text with custom content, and it will be preserved on regeneration 1;