Bug 34587: Add default report capability to reports viewer
[koha.git] / Koha / Schema / Result / ErmDefaultUsageReport.pm
1 use utf8;
2 package Koha::Schema::Result::ErmDefaultUsageReport;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Koha::Schema::Result::ErmDefaultUsageReport
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<erm_default_usage_reports>
19
20 =cut
21
22 __PACKAGE__->table("erm_default_usage_reports");
23
24 =head1 ACCESSORS
25
26 =head2 erm_default_usage_report_id
27
28   data_type: 'integer'
29   is_auto_increment: 1
30   is_nullable: 0
31
32 primary key
33
34 =head2 report_name
35
36   data_type: 'varchar'
37   is_nullable: 1
38   size: 50
39
40 name of the default report
41
42 =head2 report_url_params
43
44   data_type: 'longtext'
45   is_nullable: 1
46
47 url params for the default report
48
49 =cut
50
51 __PACKAGE__->add_columns(
52   "erm_default_usage_report_id",
53   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
54   "report_name",
55   { data_type => "varchar", is_nullable => 1, size => 50 },
56   "report_url_params",
57   { data_type => "longtext", is_nullable => 1 },
58 );
59
60 =head1 PRIMARY KEY
61
62 =over 4
63
64 =item * L</erm_default_usage_report_id>
65
66 =back
67
68 =cut
69
70 __PACKAGE__->set_primary_key("erm_default_usage_report_id");
71
72
73 # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-06-15 10:27:53
74 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rA1k44Zr273CfmPirG8RMA
75
76
77 # You can replace this text with custom code or comments, and it will be preserved on regeneration
78 1;