Lines 134-190
__PACKAGE__->table("borrowers");
Link Here
|
134 |
data_type: 'text' |
134 |
data_type: 'text' |
135 |
is_nullable: 1 |
135 |
is_nullable: 1 |
136 |
|
136 |
|
137 |
=head2 b_streetnumber |
137 |
=head2 B_streetnumber |
138 |
|
138 |
|
|
|
139 |
accessor: 'b_streetnumber' |
139 |
data_type: 'varchar' |
140 |
data_type: 'varchar' |
140 |
is_nullable: 1 |
141 |
is_nullable: 1 |
141 |
size: 10 |
142 |
size: 10 |
142 |
|
143 |
|
143 |
=head2 b_streettype |
144 |
=head2 B_streettype |
144 |
|
145 |
|
|
|
146 |
accessor: 'b_streettype' |
145 |
data_type: 'varchar' |
147 |
data_type: 'varchar' |
146 |
is_nullable: 1 |
148 |
is_nullable: 1 |
147 |
size: 50 |
149 |
size: 50 |
148 |
|
150 |
|
149 |
=head2 b_address |
151 |
=head2 B_address |
150 |
|
152 |
|
|
|
153 |
accessor: 'b_address' |
151 |
data_type: 'varchar' |
154 |
data_type: 'varchar' |
152 |
is_nullable: 1 |
155 |
is_nullable: 1 |
153 |
size: 100 |
156 |
size: 100 |
154 |
|
157 |
|
155 |
=head2 b_address2 |
158 |
=head2 B_address2 |
156 |
|
159 |
|
|
|
160 |
accessor: 'b_address2' |
157 |
data_type: 'text' |
161 |
data_type: 'text' |
158 |
is_nullable: 1 |
162 |
is_nullable: 1 |
159 |
|
163 |
|
160 |
=head2 b_city |
164 |
=head2 B_city |
161 |
|
165 |
|
|
|
166 |
accessor: 'b_city' |
162 |
data_type: 'mediumtext' |
167 |
data_type: 'mediumtext' |
163 |
is_nullable: 1 |
168 |
is_nullable: 1 |
164 |
|
169 |
|
165 |
=head2 b_state |
170 |
=head2 B_state |
166 |
|
171 |
|
|
|
172 |
accessor: 'b_state' |
167 |
data_type: 'text' |
173 |
data_type: 'text' |
168 |
is_nullable: 1 |
174 |
is_nullable: 1 |
169 |
|
175 |
|
170 |
=head2 b_zipcode |
176 |
=head2 B_zipcode |
171 |
|
177 |
|
|
|
178 |
accessor: 'b_zipcode' |
172 |
data_type: 'varchar' |
179 |
data_type: 'varchar' |
173 |
is_nullable: 1 |
180 |
is_nullable: 1 |
174 |
size: 25 |
181 |
size: 25 |
175 |
|
182 |
|
176 |
=head2 b_country |
183 |
=head2 B_country |
177 |
|
184 |
|
|
|
185 |
accessor: 'b_country' |
178 |
data_type: 'text' |
186 |
data_type: 'text' |
179 |
is_nullable: 1 |
187 |
is_nullable: 1 |
180 |
|
188 |
|
181 |
=head2 b_email |
189 |
=head2 B_email |
182 |
|
190 |
|
|
|
191 |
accessor: 'b_email' |
183 |
data_type: 'text' |
192 |
data_type: 'text' |
184 |
is_nullable: 1 |
193 |
is_nullable: 1 |
185 |
|
194 |
|
186 |
=head2 b_phone |
195 |
=head2 B_phone |
187 |
|
196 |
|
|
|
197 |
accessor: 'b_phone' |
188 |
data_type: 'mediumtext' |
198 |
data_type: 'mediumtext' |
189 |
is_nullable: 1 |
199 |
is_nullable: 1 |
190 |
|
200 |
|
Lines 442-467
__PACKAGE__->add_columns(
Link Here
|
442 |
{ data_type => "text", is_nullable => 1 }, |
452 |
{ data_type => "text", is_nullable => 1 }, |
443 |
"phonepro", |
453 |
"phonepro", |
444 |
{ data_type => "text", is_nullable => 1 }, |
454 |
{ data_type => "text", is_nullable => 1 }, |
445 |
"b_streetnumber", |
455 |
"B_streetnumber", |
446 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
456 |
{ |
447 |
"b_streettype", |
457 |
accessor => "b_streetnumber", |
448 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
458 |
data_type => "varchar", |
449 |
"b_address", |
459 |
is_nullable => 1, |
450 |
{ data_type => "varchar", is_nullable => 1, size => 100 }, |
460 |
size => 10, |
451 |
"b_address2", |
461 |
}, |
452 |
{ data_type => "text", is_nullable => 1 }, |
462 |
"B_streettype", |
453 |
"b_city", |
463 |
{ |
454 |
{ data_type => "mediumtext", is_nullable => 1 }, |
464 |
accessor => "b_streettype", |
455 |
"b_state", |
465 |
data_type => "varchar", |
456 |
{ data_type => "text", is_nullable => 1 }, |
466 |
is_nullable => 1, |
457 |
"b_zipcode", |
467 |
size => 50, |
458 |
{ data_type => "varchar", is_nullable => 1, size => 25 }, |
468 |
}, |
459 |
"b_country", |
469 |
"B_address", |
460 |
{ data_type => "text", is_nullable => 1 }, |
470 |
{ |
461 |
"b_email", |
471 |
accessor => "b_address", |
462 |
{ data_type => "text", is_nullable => 1 }, |
472 |
data_type => "varchar", |
463 |
"b_phone", |
473 |
is_nullable => 1, |
464 |
{ data_type => "mediumtext", is_nullable => 1 }, |
474 |
size => 100, |
|
|
475 |
}, |
476 |
"B_address2", |
477 |
{ accessor => "b_address2", data_type => "text", is_nullable => 1 }, |
478 |
"B_city", |
479 |
{ accessor => "b_city", data_type => "mediumtext", is_nullable => 1 }, |
480 |
"B_state", |
481 |
{ accessor => "b_state", data_type => "text", is_nullable => 1 }, |
482 |
"B_zipcode", |
483 |
{ |
484 |
accessor => "b_zipcode", |
485 |
data_type => "varchar", |
486 |
is_nullable => 1, |
487 |
size => 25, |
488 |
}, |
489 |
"B_country", |
490 |
{ accessor => "b_country", data_type => "text", is_nullable => 1 }, |
491 |
"B_email", |
492 |
{ accessor => "b_email", data_type => "text", is_nullable => 1 }, |
493 |
"B_phone", |
494 |
{ accessor => "b_phone", data_type => "mediumtext", is_nullable => 1 }, |
465 |
"dateofbirth", |
495 |
"dateofbirth", |
466 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
496 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
467 |
"branchcode", |
497 |
"branchcode", |
Lines 1072-1079
Composing rels: L</course_instructors> -> course
Link Here
|
1072 |
__PACKAGE__->many_to_many("courses", "course_instructors", "course"); |
1102 |
__PACKAGE__->many_to_many("courses", "course_instructors", "course"); |
1073 |
|
1103 |
|
1074 |
|
1104 |
|
1075 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55 |
1105 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05 |
1076 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5cfpOojccKCoVRMj+0mWHg |
1106 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZzZiKYN4b/LuEARX4rawhA |
1077 |
|
1107 |
|
1078 |
|
1108 |
|
1079 |
# You can replace this text with custom content, and it will be preserved on regeneration |
1109 |
# You can replace this text with custom content, and it will be preserved on regeneration |