|
Lines 41-46
__PACKAGE__->table("itemtypes");
Link Here
|
| 41 |
is_nullable: 1 |
41 |
is_nullable: 1 |
| 42 |
size: [28,6] |
42 |
size: [28,6] |
| 43 |
|
43 |
|
|
|
44 |
=head2 rental_charge_daily |
| 45 |
|
| 46 |
data_type: 'decimal' |
| 47 |
is_nullable: 1 |
| 48 |
size: [28,6] |
| 49 |
|
| 44 |
=head2 defaultreplacecost |
50 |
=head2 defaultreplacecost |
| 45 |
|
51 |
|
| 46 |
data_type: 'decimal' |
52 |
data_type: 'decimal' |
|
Lines 109-114
__PACKAGE__->add_columns(
Link Here
|
| 109 |
{ data_type => "longtext", is_nullable => 1 }, |
115 |
{ data_type => "longtext", is_nullable => 1 }, |
| 110 |
"rentalcharge", |
116 |
"rentalcharge", |
| 111 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
117 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
|
|
118 |
"rental_charge_daily", |
| 119 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
| 112 |
"defaultreplacecost", |
120 |
"defaultreplacecost", |
| 113 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
121 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
| 114 |
"processfee", |
122 |
"processfee", |
|
Lines 226-233
__PACKAGE__->has_many(
Link Here
|
| 226 |
); |
234 |
); |
| 227 |
|
235 |
|
| 228 |
|
236 |
|
| 229 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-05 14:29:17 |
237 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-10-25 12:41:04 |
| 230 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GthTVMBLO5Zi6NU3up3m+A |
238 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Iyb9JKB8gdyZPtZloHVxSQ |
| 231 |
|
239 |
|
| 232 |
# Use the ItemtypeLocalization view to create the join on localization |
240 |
# Use the ItemtypeLocalization view to create the join on localization |
| 233 |
our $LANGUAGE; |
241 |
our $LANGUAGE; |
| 234 |
- |
|
|