|
Lines 407-412
__PACKAGE__->table("borrowers");
Link Here
|
| 407 |
default_value: 0 |
407 |
default_value: 0 |
| 408 |
is_nullable: 0 |
408 |
is_nullable: 0 |
| 409 |
|
409 |
|
|
|
410 |
=head2 lastseen |
| 411 |
|
| 412 |
data_type: 'datetime' |
| 413 |
datetime_undef_if_invalid: 1 |
| 414 |
is_nullable: 1 |
| 415 |
|
| 410 |
=cut |
416 |
=cut |
| 411 |
|
417 |
|
| 412 |
__PACKAGE__->add_columns( |
418 |
__PACKAGE__->add_columns( |
|
Lines 576-581
__PACKAGE__->add_columns(
Link Here
|
| 576 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
582 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
| 577 |
"privacy_guarantor_checkouts", |
583 |
"privacy_guarantor_checkouts", |
| 578 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
584 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
585 |
"lastseen", |
| 586 |
{ |
| 587 |
data_type => "datetime", |
| 588 |
datetime_undef_if_invalid => 1, |
| 589 |
is_nullable => 1, |
| 590 |
}, |
| 579 |
); |
591 |
); |
| 580 |
|
592 |
|
| 581 |
=head1 PRIMARY KEY |
593 |
=head1 PRIMARY KEY |
|
Lines 1204-1211
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
| 1204 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1216 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
| 1205 |
|
1217 |
|
| 1206 |
|
1218 |
|
| 1207 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-02-14 12:46:14 |
1219 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-04-24 17:32:24 |
| 1208 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bI6qJYw+ulTUwA7XMCkkRw |
1220 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Lqnr1bMJDpGyjIj7brABHQ |
| 1209 |
|
1221 |
|
| 1210 |
__PACKAGE__->belongs_to( |
1222 |
__PACKAGE__->belongs_to( |
| 1211 |
"guarantor", |
1223 |
"guarantor", |