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

(-)a/Koha/Schema/Result/Itemtype.pm (-6 / +21 lines)
Lines 37-45 __PACKAGE__->table("itemtypes"); Link Here
37
37
38
=head2 rentalcharge
38
=head2 rentalcharge
39
39
40
  data_type: 'double precision'
40
  data_type: 'decimal'
41
  is_nullable: 1
41
  is_nullable: 1
42
  size: [16,4]
42
  size: [28,6]
43
44
=head2 defaultreplacecost
45
46
  data_type: 'decimal'
47
  is_nullable: 1
48
  size: [28,6]
49
50
=head2 processfee
51
52
  data_type: 'decimal'
53
  is_nullable: 1
54
  size: [28,6]
43
55
44
=head2 notforloan
56
=head2 notforloan
45
57
Lines 96-102 __PACKAGE__->add_columns( Link Here
96
  "description",
108
  "description",
97
  { data_type => "mediumtext", is_nullable => 1 },
109
  { data_type => "mediumtext", is_nullable => 1 },
98
  "rentalcharge",
110
  "rentalcharge",
99
  { data_type => "double precision", is_nullable => 1, size => [16, 4] },
111
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
112
  "defaultreplacecost",
113
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
114
  "processfee",
115
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
100
  "notforloan",
116
  "notforloan",
101
  { data_type => "smallint", is_nullable => 1 },
117
  { data_type => "smallint", is_nullable => 1 },
102
  "imageurl",
118
  "imageurl",
Lines 195-202 __PACKAGE__->has_many( Link Here
195
);
211
);
196
212
197
213
198
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-29 10:32:00
214
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-10-10 14:27:09
199
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1GiikODklVISOurHX37qjA
215
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vERtWCf17tayLdzgnXpQcA
200
216
201
# Use the ItemtypeLocalization view to create the join on localization
217
# Use the ItemtypeLocalization view to create the join on localization
202
our $LANGUAGE;
218
our $LANGUAGE;
203
- 

Return to bug 12768