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 157-162 __PACKAGE__->add_columns( Link Here
157
  },
169
  },
158
  "notes",
170
  "notes",
159
  { data_type => "mediumtext", is_nullable => 1 },
171
  { data_type => "mediumtext", is_nullable => 1 },
172
  "format",
173
  {
174
    data_type => "enum",
175
    default_value => "PHOTOCOPY",
176
    extra => { list => ["PHOTOCOPY", "SCAN"] },
177
    is_nullable => 0,
178
  },
179
  "urls",
180
  { data_type => "mediumtext", is_nullable => 1 },
160
  "created_on",
181
  "created_on",
161
  {
182
  {
162
    data_type => "timestamp",
183
    data_type => "timestamp",
Lines 257-264 __PACKAGE__->belongs_to( Link Here
257
);
278
);
258
279
259
280
260
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-02 09:44:27
281
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-29 12:52:16
261
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Dhz1mVI7Z/6ibqaBZkPvUA
282
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OKPNYigFZ7GbhCgokq2Utw
262
283
263
284
264
# You can replace this text with custom code or comments, and it will be preserved on regeneration
285
# You can replace this text with custom code or comments, and it will be preserved on regeneration
265
- 

Return to bug 20472