Bug 15552: Better wording of intranetreadinghistory
[koha.git] / Koha / Schema / Result / DefaultCircRule.pm
blob5e0f266ddf5f4462ef525d30b1b8a067dd439435
1 use utf8;
2 package Koha::Schema::Result::DefaultCircRule;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::DefaultCircRule
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<default_circ_rules>
20 =cut
22 __PACKAGE__->table("default_circ_rules");
24 =head1 ACCESSORS
26 =head2 singleton
28 data_type: 'enum'
29 default_value: 'singleton'
30 extra: {list => ["singleton"]}
31 is_nullable: 0
33 =head2 maxissueqty
35 data_type: 'integer'
36 is_nullable: 1
38 =head2 maxonsiteissueqty
40 data_type: 'integer'
41 is_nullable: 1
43 =head2 holdallowed
45 data_type: 'integer'
46 is_nullable: 1
48 =head2 returnbranch
50 data_type: 'varchar'
51 is_nullable: 1
52 size: 15
54 =cut
56 __PACKAGE__->add_columns(
57 "singleton",
59 data_type => "enum",
60 default_value => "singleton",
61 extra => { list => ["singleton"] },
62 is_nullable => 0,
64 "maxissueqty",
65 { data_type => "integer", is_nullable => 1 },
66 "maxonsiteissueqty",
67 { data_type => "integer", is_nullable => 1 },
68 "holdallowed",
69 { data_type => "integer", is_nullable => 1 },
70 "returnbranch",
71 { data_type => "varchar", is_nullable => 1, size => 15 },
74 =head1 PRIMARY KEY
76 =over 4
78 =item * L</singleton>
80 =back
82 =cut
84 __PACKAGE__->set_primary_key("singleton");
87 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
88 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TLEpv+H3v7P3psVl+WMA0Q
91 # You can replace this text with custom content, and it will be preserved on regeneration