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

(-)a/Koha/Schema/Result/Deleteditem.pm (+2 lines)
Lines 504-509 __PACKAGE__->add_columns( Link Here
504
  { data_type => "mediumtext", is_nullable => 1 },
504
  { data_type => "mediumtext", is_nullable => 1 },
505
  "itype",
505
  "itype",
506
  { data_type => "varchar", is_nullable => 1, size => 10 },
506
  { data_type => "varchar", is_nullable => 1, size => 10 },
507
  "is_closed_stack",
508
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
507
  "more_subfields_xml",
509
  "more_subfields_xml",
508
  { data_type => "longtext", is_nullable => 1 },
510
  { data_type => "longtext", is_nullable => 1 },
509
  "enumchron",
511
  "enumchron",
(-)a/Koha/Schema/Result/Item.pm (+2 lines)
Lines 518-523 __PACKAGE__->add_columns( Link Here
518
  { data_type => "mediumtext", is_nullable => 1 },
518
  { data_type => "mediumtext", is_nullable => 1 },
519
  "itype",
519
  "itype",
520
  { data_type => "varchar", is_nullable => 1, size => 10 },
520
  { data_type => "varchar", is_nullable => 1, size => 10 },
521
  "is_closed_stack",
522
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
521
  "more_subfields_xml",
523
  "more_subfields_xml",
522
  { data_type => "longtext", is_nullable => 1 },
524
  { data_type => "longtext", is_nullable => 1 },
523
  "enumchron",
525
  "enumchron",
(-)a/Koha/Schema/Result/OldReserve.pm (+2 lines)
Lines 300-305 __PACKAGE__->add_columns( Link Here
300
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
300
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
301
  "non_priority",
301
  "non_priority",
302
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
302
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
303
  "closed_stack_request_slip_printed",
304
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
303
);
305
);
304
306
305
=head1 PRIMARY KEY
307
=head1 PRIMARY KEY
(-)a/Koha/Schema/Result/Reserve.pm (-1 / +2 lines)
Lines 308-313 __PACKAGE__->add_columns( Link Here
308
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
308
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
309
  "non_priority",
309
  "non_priority",
310
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
310
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
311
  "closed_stack_request_slip_printed",
312
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
311
);
313
);
312
314
313
=head1 PRIMARY KEY
315
=head1 PRIMARY KEY
314
- 

Return to bug 38666