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

(-)a/Koha/Schema/Result/Suggestion.pm (-10 / +3 lines)
Lines 39-45 __PACKAGE__->table("suggestions"); Link Here
39
39
40
  data_type: 'date'
40
  data_type: 'date'
41
  datetime_undef_if_invalid: 1
41
  datetime_undef_if_invalid: 1
42
  default_value: '0000-00-00'
43
  is_nullable: 0
42
  is_nullable: 0
44
43
45
=head2 managedby
44
=head2 managedby
Lines 215-226 __PACKAGE__->add_columns( Link Here
215
  "suggestedby",
214
  "suggestedby",
216
  { data_type => "integer", default_value => 0, is_nullable => 0 },
215
  { data_type => "integer", default_value => 0, is_nullable => 0 },
217
  "suggesteddate",
216
  "suggesteddate",
218
  {
217
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 0 },
219
    data_type => "date",
220
    datetime_undef_if_invalid => 1,
221
    default_value => "0000-00-00",
222
    is_nullable => 0,
223
  },
224
  "managedby",
218
  "managedby",
225
  { data_type => "integer", is_nullable => 1 },
219
  { data_type => "integer", is_nullable => 1 },
226
  "manageddate",
220
  "manageddate",
Lines 299-306 __PACKAGE__->add_columns( Link Here
299
__PACKAGE__->set_primary_key("suggestionid");
293
__PACKAGE__->set_primary_key("suggestionid");
300
294
301
295
302
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
296
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-12-13 01:10:43
303
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CQRbWbu5MBouyD67ArSRNw
297
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LJoqZVAeoZ0ra2BKxXRQMQ
304
298
305
299
306
# You can replace this text with custom content, and it will be preserved on regeneration
300
# You can replace this text with custom content, and it will be preserved on regeneration
307
- 

Return to bug 11391