Bug 8798: DBIx::Class base classes for all Koha tables
[koha.git] / Koha / Schema / Result / Browser.pm
1 package Koha::Schema::Result::Browser;
2
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
5
6 use strict;
7 use warnings;
8
9 use base 'DBIx::Class::Core';
10
11
12 =head1 NAME
13
14 Koha::Schema::Result::Browser
15
16 =cut
17
18 __PACKAGE__->table("browser");
19
20 =head1 ACCESSORS
21
22 =head2 level
23
24   data_type: 'integer'
25   is_nullable: 0
26
27 =head2 classification
28
29   data_type: 'varchar'
30   is_nullable: 0
31   size: 20
32
33 =head2 description
34
35   data_type: 'varchar'
36   is_nullable: 0
37   size: 255
38
39 =head2 number
40
41   data_type: 'bigint'
42   is_nullable: 0
43
44 =head2 endnode
45
46   data_type: 'tinyint'
47   is_nullable: 0
48
49 =cut
50
51 __PACKAGE__->add_columns(
52   "level",
53   { data_type => "integer", is_nullable => 0 },
54   "classification",
55   { data_type => "varchar", is_nullable => 0, size => 20 },
56   "description",
57   { data_type => "varchar", is_nullable => 0, size => 255 },
58   "number",
59   { data_type => "bigint", is_nullable => 0 },
60   "endnode",
61   { data_type => "tinyint", is_nullable => 0 },
62 );
63
64
65 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
66 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PdemP//rSRmiSjwhmhigdA
67
68
69 # You can replace this text with custom content, and it will be preserved on regeneration
70 1;