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 updated_on |
411 |
|
412 |
data_type: 'timestamp' |
413 |
datetime_undef_if_invalid: 1 |
414 |
default_value: current_timestamp |
415 |
is_nullable: 0 |
416 |
|
410 |
=cut |
417 |
=cut |
411 |
|
418 |
|
412 |
__PACKAGE__->add_columns( |
419 |
__PACKAGE__->add_columns( |
Lines 576-581
__PACKAGE__->add_columns(
Link Here
|
576 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
583 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
577 |
"privacy_guarantor_checkouts", |
584 |
"privacy_guarantor_checkouts", |
578 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
585 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
586 |
"updated_on", |
587 |
{ |
588 |
data_type => "timestamp", |
589 |
datetime_undef_if_invalid => 1, |
590 |
default_value => \"current_timestamp", |
591 |
is_nullable => 0, |
592 |
}, |
579 |
); |
593 |
); |
580 |
|
594 |
|
581 |
=head1 PRIMARY KEY |
595 |
=head1 PRIMARY KEY |
Lines 1204-1211
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
1204 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1218 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1205 |
|
1219 |
|
1206 |
|
1220 |
|
1207 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-02-14 12:46:14 |
1221 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-06-12 13:52:46 |
1208 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bI6qJYw+ulTUwA7XMCkkRw |
1222 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5I5l8qodN5yJEu8KMombPw |
1209 |
|
1223 |
|
1210 |
__PACKAGE__->belongs_to( |
1224 |
__PACKAGE__->belongs_to( |
1211 |
"guarantor", |
1225 |
"guarantor", |