|
Lines 451-462
__PACKAGE__->table("borrowers");
Link Here
|
| 451 |
data_type: 'mediumtext' |
451 |
data_type: 'mediumtext' |
| 452 |
is_nullable: 1 |
452 |
is_nullable: 1 |
| 453 |
|
453 |
|
| 454 |
=head2 flgAnonymized |
454 |
=head2 anonymized |
| 455 |
|
455 |
|
| 456 |
accessor: 'flg_anonymized' |
|
|
| 457 |
data_type: 'tinyint' |
456 |
data_type: 'tinyint' |
| 458 |
default_value: 0 |
457 |
default_value: 0 |
| 459 |
is_nullable: 1 |
458 |
is_nullable: 0 |
| 460 |
|
459 |
|
| 461 |
=cut |
460 |
=cut |
| 462 |
|
461 |
|
|
Lines 660-672
__PACKAGE__->add_columns(
Link Here
|
| 660 |
{ data_type => "integer", default_value => 0, is_nullable => 1 }, |
659 |
{ data_type => "integer", default_value => 0, is_nullable => 1 }, |
| 661 |
"overdrive_auth_token", |
660 |
"overdrive_auth_token", |
| 662 |
{ data_type => "mediumtext", is_nullable => 1 }, |
661 |
{ data_type => "mediumtext", is_nullable => 1 }, |
| 663 |
"flgAnonymized", |
662 |
"anonymized", |
| 664 |
{ |
663 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 665 |
accessor => "flg_anonymized", |
|
|
| 666 |
data_type => "tinyint", |
| 667 |
default_value => 0, |
| 668 |
is_nullable => 1, |
| 669 |
}, |
| 670 |
); |
664 |
); |
| 671 |
|
665 |
|
| 672 |
=head1 PRIMARY KEY |
666 |
=head1 PRIMARY KEY |
|
Lines 1535-1542
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
| 1535 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1529 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
| 1536 |
|
1530 |
|
| 1537 |
|
1531 |
|
| 1538 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-17 11:11:33 |
1532 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-04-16 20:48:40 |
| 1539 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZkPU/EUsZVXiRoQ1E8NMbw |
1533 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sttZE1wLs9TCWLRGIy5/bA |
| 1540 |
|
1534 |
|
| 1541 |
__PACKAGE__->belongs_to( |
1535 |
__PACKAGE__->belongs_to( |
| 1542 |
"guarantor", |
1536 |
"guarantor", |
|
Lines 1545-1551
__PACKAGE__->belongs_to(
Link Here
|
| 1545 |
); |
1539 |
); |
| 1546 |
|
1540 |
|
| 1547 |
__PACKAGE__->add_columns( |
1541 |
__PACKAGE__->add_columns( |
| 1548 |
'+flgAnonymized' => { is_boolean => 1 }, |
1542 |
'+anonymized' => { is_boolean => 1 }, |
| 1549 |
'+lost' => { is_boolean => 1 }, |
1543 |
'+lost' => { is_boolean => 1 }, |
| 1550 |
'+gonenoaddress' => { is_boolean => 1 } |
1544 |
'+gonenoaddress' => { is_boolean => 1 } |
| 1551 |
); |
1545 |
); |