|
Lines 100-105
foreign key from the borrowers table, links transaction to a specific borrower
Link Here
|
| 100 |
|
100 |
|
| 101 |
foreign key from the items table, links transaction to a specific collection code |
101 |
foreign key from the items table, links transaction to a specific collection code |
| 102 |
|
102 |
|
|
|
103 |
=head2 categorycode |
| 104 |
|
| 105 |
data_type: 'varchar' |
| 106 |
is_nullable: 1 |
| 107 |
size: 10 |
| 108 |
|
| 103 |
=cut |
109 |
=cut |
| 104 |
|
110 |
|
| 105 |
__PACKAGE__->add_columns( |
111 |
__PACKAGE__->add_columns( |
|
Lines 127-137
__PACKAGE__->add_columns(
Link Here
|
| 127 |
{ data_type => "integer", is_nullable => 1 }, |
133 |
{ data_type => "integer", is_nullable => 1 }, |
| 128 |
"ccode", |
134 |
"ccode", |
| 129 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
135 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
|
|
136 |
"categorycode", |
| 137 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
| 130 |
); |
138 |
); |
| 131 |
|
139 |
|
| 132 |
|
140 |
|
| 133 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 |
141 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-05-23 13:51:32 |
| 134 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OjX7bnPQw0SjrCRB2oVr1w |
142 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yaYco9rQ8ohsFbRyd8w7Sg |
| 135 |
|
143 |
|
| 136 |
|
144 |
|
| 137 |
# You can replace this text with custom content, and it will be preserved on regeneration |
145 |
# You can replace this text with custom content, and it will be preserved on regeneration |
| 138 |
- |
|
|