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 316-321 __PACKAGE__->add_columns( Link Here
316
    is_foreign_key => 1,
316
    is_foreign_key => 1,
317
    is_nullable => 1,
317
    is_nullable => 1,
318
  },
318
  },
319
  "closed_stack_request_slip_printed",
320
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
319
);
321
);
320
322
321
=head1 PRIMARY KEY
323
=head1 PRIMARY KEY
(-)a/Koha/Schema/Result/Reserve.pm (-1 / +2 lines)
Lines 324-329 __PACKAGE__->add_columns( Link Here
324
    is_foreign_key => 1,
324
    is_foreign_key => 1,
325
    is_nullable => 1,
325
    is_nullable => 1,
326
  },
326
  },
327
  "closed_stack_request_slip_printed",
328
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
327
);
329
);
328
330
329
=head1 PRIMARY KEY
331
=head1 PRIMARY KEY
330
- 

Return to bug 38666