View | Details | Raw Unified | Return to bug 41182
Collapse All | Expand All

(-)a/Koha/Schema/Result/ErmUsageDataProvider.pm (-3 / +18 lines)
Lines 131-136 requestor name Link Here
131
131
132
requestor email
132
requestor email
133
133
134
=head2 dateformat
135
136
  data_type: 'enum'
137
  default_value: 'yyyy-mm'
138
  extra: {list => ["yyyy-mm","yyyy-mm-dd"]}
139
  is_nullable: 1
140
141
dateformat
142
134
=head2 report_types
143
=head2 report_types
135
144
136
  data_type: 'varchar'
145
  data_type: 'varchar'
Lines 178-183 __PACKAGE__->add_columns( Link Here
178
  { data_type => "varchar", is_nullable => 1, size => 80 },
187
  { data_type => "varchar", is_nullable => 1, size => 80 },
179
  "requestor_email",
188
  "requestor_email",
180
  { data_type => "varchar", is_nullable => 1, size => 80 },
189
  { data_type => "varchar", is_nullable => 1, size => 80 },
190
  "dateformat",
191
  {
192
    data_type => "enum",
193
    default_value => "yyyy-mm",
194
    extra => { list => ["yyyy-mm", "yyyy-mm-dd"] },
195
    is_nullable => 1,
196
  },
181
  "report_types",
197
  "report_types",
182
  { data_type => "varchar", is_nullable => 1, size => 255 },
198
  { data_type => "varchar", is_nullable => 1, size => 255 },
183
  "service_platform",
199
  "service_platform",
Lines 335-342 __PACKAGE__->has_many( Link Here
335
);
351
);
336
352
337
353
338
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-04-24 17:38:40
354
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-01-26 16:35:13
339
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ToAsyGMN6zZW/ffmCqE8XA
355
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hbRQK/1OeHJE3PAVhn9xYw
340
356
341
# __PACKAGE__->add_columns(
357
# __PACKAGE__->add_columns(
342
#     '+active' => { is_boolean => 1 }
358
#     '+active' => { is_boolean => 1 }
343
- 

Return to bug 41182