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

(-)a/Koha/Schema/Result/BranchTransferLimit.pm (-4 / +4 lines)
Lines 54-60 __PACKAGE__->table("branch_transfer_limits"); Link Here
54
54
55
  data_type: 'varchar'
55
  data_type: 'varchar'
56
  is_nullable: 1
56
  is_nullable: 1
57
  size: 10
57
  size: 80
58
58
59
=cut
59
=cut
60
60
Lines 83-89 __PACKAGE__->add_columns( Link Here
83
  "itemtype",
83
  "itemtype",
84
  { data_type => "varchar", is_nullable => 1, size => 10 },
84
  { data_type => "varchar", is_nullable => 1, size => 10 },
85
  "ccode",
85
  "ccode",
86
  { data_type => "varchar", is_nullable => 1, size => 10 },
86
  { data_type => "varchar", is_nullable => 1, size => 80 },
87
);
87
);
88
88
89
=head1 PRIMARY KEY
89
=head1 PRIMARY KEY
Lines 99-106 __PACKAGE__->add_columns( Link Here
99
__PACKAGE__->set_primary_key("limitId");
99
__PACKAGE__->set_primary_key("limitId");
100
100
101
101
102
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
102
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15
103
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XPpJwcw5PRa7Fo7PRg32zg
103
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UNy0mkMQUdfuCQa6UP5Oww
104
104
105
105
106
# You can replace this text with custom content, and it will be preserved on regeneration
106
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/CourseItem.pm (-4 / +4 lines)
Lines 45-51 __PACKAGE__->table("course_items"); Link Here
45
45
46
  data_type: 'varchar'
46
  data_type: 'varchar'
47
  is_nullable: 1
47
  is_nullable: 1
48
  size: 10
48
  size: 80
49
49
50
=head2 holdingbranch
50
=head2 holdingbranch
51
51
Lines 84-90 __PACKAGE__->add_columns( Link Here
84
  "itype",
84
  "itype",
85
  { data_type => "varchar", is_nullable => 1, size => 10 },
85
  { data_type => "varchar", is_nullable => 1, size => 10 },
86
  "ccode",
86
  "ccode",
87
  { data_type => "varchar", is_nullable => 1, size => 10 },
87
  { data_type => "varchar", is_nullable => 1, size => 80 },
88
  "holdingbranch",
88
  "holdingbranch",
89
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
89
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
90
  "location",
90
  "location",
Lines 184-191 __PACKAGE__->belongs_to( Link Here
184
);
184
);
185
185
186
186
187
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-09-02 09:46:54
187
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15
188
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g5lEeHNvnM4KIb6AJUxDOw
188
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TcKD3pRsaROe5p7A991U/g
189
189
190
190
191
# You can replace this text with custom content, and it will be preserved on regeneration
191
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Deleteditem.pm (-4 / +4 lines)
Lines 235-241 __PACKAGE__->table("deleteditems"); Link Here
235
235
236
  data_type: 'varchar'
236
  data_type: 'varchar'
237
  is_nullable: 1
237
  is_nullable: 1
238
  size: 10
238
  size: 80
239
239
240
=head2 materials
240
=head2 materials
241
241
Lines 375-381 __PACKAGE__->add_columns( Link Here
375
  "cn_sort",
375
  "cn_sort",
376
  { data_type => "varchar", is_nullable => 1, size => 255 },
376
  { data_type => "varchar", is_nullable => 1, size => 255 },
377
  "ccode",
377
  "ccode",
378
  { data_type => "varchar", is_nullable => 1, size => 10 },
378
  { data_type => "varchar", is_nullable => 1, size => 80 },
379
  "materials",
379
  "materials",
380
  { data_type => "mediumtext", is_nullable => 1 },
380
  { data_type => "mediumtext", is_nullable => 1 },
381
  "uri",
381
  "uri",
Lines 407-414 __PACKAGE__->add_columns( Link Here
407
__PACKAGE__->set_primary_key("itemnumber");
407
__PACKAGE__->set_primary_key("itemnumber");
408
408
409
409
410
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-18 16:41:11
410
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15
411
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xb11fPjp5PyXU7yfFWHycw
411
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ltw9PT9b04/wtWSyMdC3pw
412
412
413
413
414
# 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 (-5 / +4 lines)
Lines 239-245 __PACKAGE__->table("items"); Link Here
239
239
240
  data_type: 'varchar'
240
  data_type: 'varchar'
241
  is_nullable: 1
241
  is_nullable: 1
242
  size: 10
242
  size: 80
243
243
244
=head2 materials
244
=head2 materials
245
245
Lines 389-395 __PACKAGE__->add_columns( Link Here
389
  "cn_sort",
389
  "cn_sort",
390
  { data_type => "varchar", is_nullable => 1, size => 255 },
390
  { data_type => "varchar", is_nullable => 1, size => 255 },
391
  "ccode",
391
  "ccode",
392
  { data_type => "varchar", is_nullable => 1, size => 10 },
392
  { data_type => "varchar", is_nullable => 1, size => 80 },
393
  "materials",
393
  "materials",
394
  { data_type => "mediumtext", is_nullable => 1 },
394
  { data_type => "mediumtext", is_nullable => 1 },
395
  "uri",
395
  "uri",
Lines 687-694 __PACKAGE__->might_have( Link Here
687
);
687
);
688
688
689
689
690
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-18 16:41:12
690
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-09-04 11:03:15
691
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CrNXvpDUvvcuPZK2Gfzs/Q
691
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g7Q0rSLDs49ZQ0gI7+eaGw
692
692
693
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
693
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
694
694
695
- 

Return to bug 5458