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

(-)a/Koha/Schema/Result/Biblioitem.pm (-5 / +4 lines)
Lines 174-182 publication place (MARC21 260$a) Link Here
174
174
175
=head2 lccn
175
=head2 lccn
176
176
177
  data_type: 'varchar'
177
  data_type: 'longtext'
178
  is_nullable: 1
178
  is_nullable: 1
179
  size: 25
180
179
181
library of congress control number (MARC21 010$a)
180
library of congress control number (MARC21 010$a)
182
181
Lines 294-300 __PACKAGE__->add_columns( Link Here
294
  "place",
293
  "place",
295
  { data_type => "varchar", is_nullable => 1, size => 255 },
294
  { data_type => "varchar", is_nullable => 1, size => 255 },
296
  "lccn",
295
  "lccn",
297
  { data_type => "varchar", is_nullable => 1, size => 25 },
296
  { data_type => "longtext", is_nullable => 1 },
298
  "url",
297
  "url",
299
  { data_type => "mediumtext", is_nullable => 1 },
298
  { data_type => "mediumtext", is_nullable => 1 },
300
  "cn_source",
299
  "cn_source",
Lines 358-365 __PACKAGE__->has_many( Link Here
358
);
357
);
359
358
360
359
361
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
360
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-03 13:35:04
362
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Q5VdRYkLa95Kc96wiwLh/g
361
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4+THJV78AKMkqswe76Ul0Q
363
362
364
__PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );
363
__PACKAGE__->belongs_to( biblio => "Koha::Schema::Result::Biblio", "biblionumber" );
365
364
(-)a/Koha/Schema/Result/Deletedbiblioitem.pm (-6 / +4 lines)
Lines 173-181 publication place (MARC21 260$a) Link Here
173
173
174
=head2 lccn
174
=head2 lccn
175
175
176
  data_type: 'varchar'
176
  data_type: 'longtext'
177
  is_nullable: 1
177
  is_nullable: 1
178
  size: 25
179
178
180
library of congress control number (MARC21 010$a)
179
library of congress control number (MARC21 010$a)
181
180
Lines 288-294 __PACKAGE__->add_columns( Link Here
288
  "place",
287
  "place",
289
  { data_type => "varchar", is_nullable => 1, size => 255 },
288
  { data_type => "varchar", is_nullable => 1, size => 255 },
290
  "lccn",
289
  "lccn",
291
  { data_type => "varchar", is_nullable => 1, size => 25 },
290
  { data_type => "longtext", is_nullable => 1 },
292
  "url",
291
  "url",
293
  { data_type => "mediumtext", is_nullable => 1 },
292
  { data_type => "mediumtext", is_nullable => 1 },
294
  "cn_source",
293
  "cn_source",
Lines 320-327 __PACKAGE__->add_columns( Link Here
320
__PACKAGE__->set_primary_key("biblioitemnumber");
319
__PACKAGE__->set_primary_key("biblioitemnumber");
321
320
322
321
323
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
322
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-03 13:35:04
324
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rGXNjpclQJ3+na+MYa4YFA
323
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/l/jW3IssAIEgceZPBIEGQ
325
324
326
sub koha_objects_class {
325
sub koha_objects_class {
327
    'Koha::Old::Biblioitems';
326
    'Koha::Old::Biblioitems';
328
- 

Return to bug 28328