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

(-)a/Koha/Schema/Result/Deleteditem.pm (-2 / +14 lines)
Lines 111-116 __PACKAGE__->table("deleteditems"); Link Here
111
  default_value: 0
111
  default_value: 0
112
  is_nullable: 0
112
  is_nullable: 0
113
113
114
=head2 damaged_on
115
116
  data_type: 'datetime'
117
  datetime_undef_if_invalid: 1
118
  is_nullable: 1
119
114
=head2 itemlost
120
=head2 itemlost
115
121
116
  data_type: 'tinyint'
122
  data_type: 'tinyint'
Lines 309-314 __PACKAGE__->add_columns( Link Here
309
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
315
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
310
  "damaged",
316
  "damaged",
311
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
317
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
318
  "damaged_on",
319
  {
320
    data_type => "datetime",
321
    datetime_undef_if_invalid => 1,
322
    is_nullable => 1,
323
  },
312
  "itemlost",
324
  "itemlost",
313
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
325
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
314
  "itemlost_on",
326
  "itemlost_on",
Lines 395-402 __PACKAGE__->add_columns( Link Here
395
__PACKAGE__->set_primary_key("itemnumber");
407
__PACKAGE__->set_primary_key("itemnumber");
396
408
397
409
398
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-31 17:10:17
410
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-07-19 12:58:36
399
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:npNexLgE7AxLp6iVy1FxgQ
411
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Akw4lzQAume5Y/V0XapOkw
400
412
401
413
402
# You can replace this text with custom content, and it will be preserved on regeneration
414
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Item.pm (-3 / +14 lines)
Lines 114-119 __PACKAGE__->table("items"); Link Here
114
  default_value: 0
114
  default_value: 0
115
  is_nullable: 0
115
  is_nullable: 0
116
116
117
=head2 damaged_on
118
119
  data_type: 'datetime'
120
  datetime_undef_if_invalid: 1
121
  is_nullable: 1
122
117
=head2 itemlost
123
=head2 itemlost
118
124
119
  data_type: 'tinyint'
125
  data_type: 'tinyint'
Lines 323-328 __PACKAGE__->add_columns( Link Here
323
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
329
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
324
  "damaged",
330
  "damaged",
325
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
331
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
332
  "damaged_on",
333
  {
334
    data_type => "datetime",
335
    datetime_undef_if_invalid => 1,
336
    is_nullable => 1,
337
  },
326
  "itemlost",
338
  "itemlost",
327
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
339
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
328
  "itemlost_on",
340
  "itemlost_on",
Lines 675-682 __PACKAGE__->might_have( Link Here
675
);
687
);
676
688
677
689
678
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 13:56:21
690
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-07-19 12:58:36
679
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Vf1sBZrpUo0Cvi896fjNuA
691
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EI5X5etdx7PPQqA85x4/eQ
680
692
681
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
693
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
682
694
683
- 

Return to bug 17672