Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / DefaultCircRule.pm
blob7bd15644eb75de215602c7c37ee67b044ea8cdab
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 holdallowed
40 data_type: 'integer'
41 is_nullable: 1
43 =head2 returnbranch
45 data_type: 'varchar'
46 is_nullable: 1
47 size: 15
49 =cut
51 __PACKAGE__->add_columns(
52 "singleton",
54 data_type => "enum",
55 default_value => "singleton",
56 extra => { list => ["singleton"] },
57 is_nullable => 0,
59 "maxissueqty",
60 { data_type => "integer", is_nullable => 1 },
61 "holdallowed",
62 { data_type => "integer", is_nullable => 1 },
63 "returnbranch",
64 { data_type => "varchar", is_nullable => 1, size => 15 },
67 =head1 PRIMARY KEY
69 =over 4
71 =item * L</singleton>
73 =back
75 =cut
77 __PACKAGE__->set_primary_key("singleton");
80 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
81 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:I4hY1uJ+wDoWPIiZj5amVg
84 # You can replace this text with custom content, and it will be preserved on regeneration