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

(-)a/Koha/Schema/Result/ArticleRequest.pm (-3 / +12 lines)
Lines 118-123 __PACKAGE__->table("article_requests"); Link Here
118
  data_type: 'mediumtext'
118
  data_type: 'mediumtext'
119
  is_nullable: 1
119
  is_nullable: 1
120
120
121
=head2 cancellation_reason
122
123
  data_type: 'varchar'
124
  is_nullable: 1
125
  size: 80
126
127
optional authorised value AR_CANCELLATION
128
121
=head2 created_on
129
=head2 created_on
122
130
123
  data_type: 'timestamp'
131
  data_type: 'timestamp'
Lines 180-185 __PACKAGE__->add_columns( Link Here
180
  },
188
  },
181
  "urls",
189
  "urls",
182
  { data_type => "mediumtext", is_nullable => 1 },
190
  { data_type => "mediumtext", is_nullable => 1 },
191
  "cancellation_reason",
192
  { data_type => "varchar", is_nullable => 1, size => 80 },
183
  "created_on",
193
  "created_on",
184
  {
194
  {
185
    data_type => "timestamp",
195
    data_type => "timestamp",
Lines 280-287 __PACKAGE__->belongs_to( Link Here
280
);
290
);
281
291
282
292
283
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-07-12 13:41:15
293
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-08-18 10:41:01
284
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GVaBsoeXb0EiuKTJYkWLEg
294
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1q7Vlki3fRVBdww1zHLCRA
285
295
286
296
287
# You can replace this text with custom code or comments, and it will be preserved on regeneration
297
# You can replace this text with custom code or comments, and it will be preserved on regeneration
288
- 

Return to bug 27947