Bug 8798: DBIx::Class base classes for all Koha tables
[koha.git] / Koha / Schema / Result / ReportsDictionary.pm
1 package Koha::Schema::Result::ReportsDictionary;
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::ReportsDictionary
15
16 =cut
17
18 __PACKAGE__->table("reports_dictionary");
19
20 =head1 ACCESSORS
21
22 =head2 id
23
24   data_type: 'integer'
25   is_auto_increment: 1
26   is_nullable: 0
27
28 =head2 name
29
30   data_type: 'varchar'
31   is_nullable: 1
32   size: 255
33
34 =head2 description
35
36   data_type: 'text'
37   is_nullable: 1
38
39 =head2 date_created
40
41   data_type: 'datetime'
42   is_nullable: 1
43
44 =head2 date_modified
45
46   data_type: 'datetime'
47   is_nullable: 1
48
49 =head2 saved_sql
50
51   data_type: 'text'
52   is_nullable: 1
53
54 =head2 report_area
55
56   data_type: 'varchar'
57   is_nullable: 1
58   size: 6
59
60 =cut
61
62 __PACKAGE__->add_columns(
63   "id",
64   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65   "name",
66   { data_type => "varchar", is_nullable => 1, size => 255 },
67   "description",
68   { data_type => "text", is_nullable => 1 },
69   "date_created",
70   { data_type => "datetime", is_nullable => 1 },
71   "date_modified",
72   { data_type => "datetime", is_nullable => 1 },
73   "saved_sql",
74   { data_type => "text", is_nullable => 1 },
75   "report_area",
76   { data_type => "varchar", is_nullable => 1, size => 6 },
77 );
78 __PACKAGE__->set_primary_key("id");
79
80
81 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
82 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ko3D4HyI5Uspi17YOtowbQ
83
84
85 # You can replace this text with custom content, and it will be preserved on regeneration
86 1;