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