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

(-)a/Koha/Schema/Result/Deleteditem.pm (-2 / +9 lines)
Lines 172-177 __PACKAGE__->table("deleteditems"); Link Here
172
  data_type: 'mediumtext'
172
  data_type: 'mediumtext'
173
  is_nullable: 1
173
  is_nullable: 1
174
174
175
=head2 itemnotes_nonpublic
176
177
  data_type: 'mediumtext'
178
  is_nullable: 1
179
175
=head2 holdingbranch
180
=head2 holdingbranch
176
181
177
  data_type: 'varchar'
182
  data_type: 'varchar'
Lines 328-333 __PACKAGE__->add_columns( Link Here
328
  { data_type => "tinyint", is_nullable => 1 },
333
  { data_type => "tinyint", is_nullable => 1 },
329
  "itemnotes",
334
  "itemnotes",
330
  { data_type => "mediumtext", is_nullable => 1 },
335
  { data_type => "mediumtext", is_nullable => 1 },
336
  "itemnotes_nonpublic",
337
  { data_type => "mediumtext", is_nullable => 1 },
331
  "holdingbranch",
338
  "holdingbranch",
332
  { data_type => "varchar", is_nullable => 1, size => 10 },
339
  { data_type => "varchar", is_nullable => 1, size => 10 },
333
  "paidfor",
340
  "paidfor",
Lines 380-387 __PACKAGE__->add_columns( Link Here
380
__PACKAGE__->set_primary_key("itemnumber");
387
__PACKAGE__->set_primary_key("itemnumber");
381
388
382
389
383
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
390
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12
384
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ru5DyaIlWJcMNAgpZRjOLg
391
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+aDMnEj1EvLQTQPAEl1ocg
385
392
386
393
387
# You can replace this text with custom content, and it will be preserved on regeneration
394
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Item.pm (-3 / +9 lines)
Lines 174-179 __PACKAGE__->table("items"); Link Here
174
  data_type: 'mediumtext'
174
  data_type: 'mediumtext'
175
  is_nullable: 1
175
  is_nullable: 1
176
176
177
=head2 itemnotes_nonpublic
178
179
  data_type: 'mediumtext'
180
  is_nullable: 1
181
177
=head2 holdingbranch
182
=head2 holdingbranch
178
183
179
  data_type: 'varchar'
184
  data_type: 'varchar'
Lines 336-341 __PACKAGE__->add_columns( Link Here
336
  { data_type => "tinyint", is_nullable => 1 },
341
  { data_type => "tinyint", is_nullable => 1 },
337
  "itemnotes",
342
  "itemnotes",
338
  { data_type => "mediumtext", is_nullable => 1 },
343
  { data_type => "mediumtext", is_nullable => 1 },
344
  "itemnotes_nonpublic",
345
  { data_type => "mediumtext", is_nullable => 1 },
339
  "holdingbranch",
346
  "holdingbranch",
340
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
347
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
341
  "paidfor",
348
  "paidfor",
Lines 609-616 __PACKAGE__->might_have( Link Here
609
);
616
);
610
617
611
618
612
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
619
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 12:42:12
613
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2slVK/FjcRDiYLeufoOFQQ
620
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:urSpNt7LBda4T5Plhi6cPw
614
621
615
sub effective_itemtype {
622
sub effective_itemtype {
616
    my ( $self ) = @_;
623
    my ( $self ) = @_;
617
- 

Return to bug 13023