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

(-)a/Koha/Schema/Result/ArticleRequest.pm (-3 / +23 lines)
Lines 106-111 __PACKAGE__->table("article_requests"); Link Here
106
  data_type: 'mediumtext'
106
  data_type: 'mediumtext'
107
  is_nullable: 1
107
  is_nullable: 1
108
108
109
=head2 format
110
111
  data_type: 'enum'
112
  default_value: 'PHOTOCOPY'
113
  extra: {list => ["PHOTOCOPY","SCAN"]}
114
  is_nullable: 0
115
116
=head2 urls
117
118
  data_type: 'mediumtext'
119
  is_nullable: 1
120
109
=head2 created_on
121
=head2 created_on
110
122
111
  data_type: 'timestamp'
123
  data_type: 'timestamp'
Lines 159-164 __PACKAGE__->add_columns( Link Here
159
  },
171
  },
160
  "notes",
172
  "notes",
161
  { data_type => "mediumtext", is_nullable => 1 },
173
  { data_type => "mediumtext", is_nullable => 1 },
174
  "format",
175
  {
176
    data_type => "enum",
177
    default_value => "PHOTOCOPY",
178
    extra => { list => ["PHOTOCOPY", "SCAN"] },
179
    is_nullable => 0,
180
  },
181
  "urls",
182
  { data_type => "mediumtext", is_nullable => 1 },
162
  "created_on",
183
  "created_on",
163
  {
184
  {
164
    data_type => "timestamp",
185
    data_type => "timestamp",
Lines 259-266 __PACKAGE__->belongs_to( Link Here
259
);
280
);
260
281
261
282
262
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
283
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-24 09:11:36
263
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5V0gW/nMkgDImbKMlIa2BA
284
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qwd3JSwKQ15ernq08NhJ3Q
264
285
265
286
266
# You can replace this text with custom code or comments, and it will be preserved on regeneration
287
# You can replace this text with custom code or comments, and it will be preserved on regeneration
267
- 

Return to bug 20472