Bug 32257: Label for patron attributes misaligned
[koha-ffzg.git] / Koha / Schema / Result / ReportsDictionary.pm
1 use utf8;
2 package Koha::Schema::Result::ReportsDictionary;
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::ReportsDictionary
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<reports_dictionary>
19
20 =cut
21
22 __PACKAGE__->table("reports_dictionary");
23
24 =head1 ACCESSORS
25
26 =head2 id
27
28   data_type: 'integer'
29   is_auto_increment: 1
30   is_nullable: 0
31
32 unique identifier assigned by Koha
33
34 =head2 name
35
36   data_type: 'varchar'
37   is_nullable: 1
38   size: 255
39
40 name for this definition
41
42 =head2 description
43
44   data_type: 'mediumtext'
45   is_nullable: 1
46
47 description for this definition
48
49 =head2 date_created
50
51   data_type: 'datetime'
52   datetime_undef_if_invalid: 1
53   is_nullable: 1
54
55 date and time this definition was created
56
57 =head2 date_modified
58
59   data_type: 'datetime'
60   datetime_undef_if_invalid: 1
61   is_nullable: 1
62
63 date and time this definition was last modified
64
65 =head2 saved_sql
66
67   data_type: 'mediumtext'
68   is_nullable: 1
69
70 SQL snippet for us in reports
71
72 =head2 report_area
73
74   data_type: 'varchar'
75   is_nullable: 1
76   size: 6
77
78 Koha module this definition is for Circulation, Catalog, Patrons, Acquistions, Accounts)
79
80 =cut
81
82 __PACKAGE__->add_columns(
83   "id",
84   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
85   "name",
86   { data_type => "varchar", is_nullable => 1, size => 255 },
87   "description",
88   { data_type => "mediumtext", is_nullable => 1 },
89   "date_created",
90   {
91     data_type => "datetime",
92     datetime_undef_if_invalid => 1,
93     is_nullable => 1,
94   },
95   "date_modified",
96   {
97     data_type => "datetime",
98     datetime_undef_if_invalid => 1,
99     is_nullable => 1,
100   },
101   "saved_sql",
102   { data_type => "mediumtext", is_nullable => 1 },
103   "report_area",
104   { data_type => "varchar", is_nullable => 1, size => 6 },
105 );
106
107 =head1 PRIMARY KEY
108
109 =over 4
110
111 =item * L</id>
112
113 =back
114
115 =cut
116
117 __PACKAGE__->set_primary_key("id");
118
119
120 # Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
121 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7r8vJ2yWD3yQCyri+uNSRw
122
123
124 # You can replace this text with custom content, and it will be preserved on regeneration
125 1;