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

(-)a/Koha/Schema/Result/Itemtype.pm (-3 / +18 lines)
Lines 47-58 __PACKAGE__->table("itemtypes"); Link Here
47
  is_nullable: 1
47
  is_nullable: 1
48
  size: [28,6]
48
  size: [28,6]
49
49
50
=head2 rentalcharge_daily_calendar
51
52
  data_type: 'tinyint'
53
  default_value: 1
54
  is_nullable: 0
55
50
=head2 rentalcharge_hourly
56
=head2 rentalcharge_hourly
51
57
52
  data_type: 'decimal'
58
  data_type: 'decimal'
53
  is_nullable: 1
59
  is_nullable: 1
54
  size: [28,6]
60
  size: [28,6]
55
61
62
=head2 rentalcharge_hourly_calendar
63
64
  data_type: 'tinyint'
65
  default_value: 1
66
  is_nullable: 0
67
56
=head2 defaultreplacecost
68
=head2 defaultreplacecost
57
69
58
  data_type: 'decimal'
70
  data_type: 'decimal'
Lines 123-130 __PACKAGE__->add_columns( Link Here
123
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
135
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
124
  "rentalcharge_daily",
136
  "rentalcharge_daily",
125
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
137
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
138
  "rentalcharge_daily_calendar",
139
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
126
  "rentalcharge_hourly",
140
  "rentalcharge_hourly",
127
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
141
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
142
  "rentalcharge_hourly_calendar",
143
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
128
  "defaultreplacecost",
144
  "defaultreplacecost",
129
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
145
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
130
  "processfee",
146
  "processfee",
Lines 227-234 __PACKAGE__->has_many( Link Here
227
);
243
);
228
244
229
245
230
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48
246
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-09 17:13:18
231
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg
247
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7ojvTzsDvdHPAJMwJrAZ7A
232
248
233
# Use the ItemtypeLocalization view to create the join on localization
249
# Use the ItemtypeLocalization view to create the join on localization
234
our $LANGUAGE;
250
our $LANGUAGE;
235
- 

Return to bug 21443