Bug 14279: Remove CGI::scrolling_list from issues_avg_stats.pl
[koha.git] / Koha / Schema / Result / Browser.pm
blob3e9c1d38e04a021367baa3134993cdd83946ddbe
1 use utf8;
2 package Koha::Schema::Result::Browser;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::Browser
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<browser>
20 =cut
22 __PACKAGE__->table("browser");
24 =head1 ACCESSORS
26 =head2 level
28 data_type: 'integer'
29 is_nullable: 0
31 =head2 classification
33 data_type: 'varchar'
34 is_nullable: 0
35 size: 20
37 =head2 description
39 data_type: 'varchar'
40 is_nullable: 0
41 size: 255
43 =head2 number
45 data_type: 'bigint'
46 is_nullable: 0
48 =head2 endnode
50 data_type: 'tinyint'
51 is_nullable: 0
53 =cut
55 __PACKAGE__->add_columns(
56 "level",
57 { data_type => "integer", is_nullable => 0 },
58 "classification",
59 { data_type => "varchar", is_nullable => 0, size => 20 },
60 "description",
61 { data_type => "varchar", is_nullable => 0, size => 255 },
62 "number",
63 { data_type => "bigint", is_nullable => 0 },
64 "endnode",
65 { data_type => "tinyint", is_nullable => 0 },
69 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
70 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eMoAXr+/JrrwEjJ3dRRwoA
73 # You can replace this text with custom content, and it will be preserved on regeneration