Lines 312-317
__PACKAGE__->table("aqorders");
Link Here
|
312 |
data_type: 'mediumtext' |
312 |
data_type: 'mediumtext' |
313 |
is_nullable: 1 |
313 |
is_nullable: 1 |
314 |
|
314 |
|
|
|
315 |
=head2 estimated_delivery_date |
316 |
|
317 |
data_type: 'date' |
318 |
datetime_undef_if_invalid: 1 |
319 |
is_nullable: 1 |
320 |
|
315 |
=cut |
321 |
=cut |
316 |
|
322 |
|
317 |
__PACKAGE__->add_columns( |
323 |
__PACKAGE__->add_columns( |
Lines 423-428
__PACKAGE__->add_columns(
Link Here
|
423 |
{ data_type => "varchar", is_nullable => 1, size => 3 }, |
429 |
{ data_type => "varchar", is_nullable => 1, size => 3 }, |
424 |
"suppliers_report", |
430 |
"suppliers_report", |
425 |
{ data_type => "mediumtext", is_nullable => 1 }, |
431 |
{ data_type => "mediumtext", is_nullable => 1 }, |
|
|
432 |
"estimated_delivery_date", |
433 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
426 |
); |
434 |
); |
427 |
|
435 |
|
428 |
=head1 PRIMARY KEY |
436 |
=head1 PRIMARY KEY |
Lines 660-667
Composing rels: L</aqorder_users> -> borrowernumber
Link Here
|
660 |
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber"); |
668 |
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber"); |
661 |
|
669 |
|
662 |
|
670 |
|
663 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-05-04 08:25:41 |
671 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-01-11 17:24:31 |
664 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pf6reFaSldsjIA6XThbDFA |
672 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wOKT8xsZVsSnEJztHR9v4Q |
665 |
|
673 |
|
666 |
__PACKAGE__->belongs_to( |
674 |
__PACKAGE__->belongs_to( |
667 |
"basket", |
675 |
"basket", |
668 |
- |
|
|