Bug 8798: DBIx::Class base classes for all Koha tables
[koha.git] / Koha / Schema / Result / SavedReport.pm
1 package Koha::Schema::Result::SavedReport;
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::SavedReport
15
16 =cut
17
18 __PACKAGE__->table("saved_reports");
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 report_id
29
30   data_type: 'integer'
31   is_nullable: 1
32
33 =head2 report
34
35   data_type: 'longtext'
36   is_nullable: 1
37
38 =head2 date_run
39
40   data_type: 'datetime'
41   is_nullable: 1
42
43 =cut
44
45 __PACKAGE__->add_columns(
46   "id",
47   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
48   "report_id",
49   { data_type => "integer", is_nullable => 1 },
50   "report",
51   { data_type => "longtext", is_nullable => 1 },
52   "date_run",
53   { data_type => "datetime", is_nullable => 1 },
54 );
55 __PACKAGE__->set_primary_key("id");
56
57
58 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
59 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sChe1C7Uh2kfpYP40UItJQ
60
61
62 # You can replace this text with custom content, and it will be preserved on regeneration
63 1;