X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=Koha%2FSchema%2FResult%2FAqorderdelivery.pm;h=453d8ffd2c6a1b944e0263bc2fa49036ede52758;hb=8a9cdcd3bcce07ace793b9b2a6ad31f4604961a2;hp=fa297cb5847a7e338b6b05170eb6e6f25bb2e84c;hpb=8a480ad75d3c78d8cf02959fb8430f4b54f82c1f;p=koha_fer diff --git a/Koha/Schema/Result/Aqorderdelivery.pm b/Koha/Schema/Result/Aqorderdelivery.pm index fa297cb584..453d8ffd2c 100644 --- a/Koha/Schema/Result/Aqorderdelivery.pm +++ b/Koha/Schema/Result/Aqorderdelivery.pm @@ -1,17 +1,21 @@ +use utf8; package Koha::Schema::Result::Aqorderdelivery; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE +=head1 NAME + +Koha::Schema::Result::Aqorderdelivery + +=cut + use strict; use warnings; use base 'DBIx::Class::Core'; - -=head1 NAME - -Koha::Schema::Result::Aqorderdelivery +=head1 TABLE: C =cut @@ -22,6 +26,7 @@ __PACKAGE__->table("aqorderdelivery"); =head2 ordernumber data_type: 'date' + datetime_undef_if_invalid: 1 is_nullable: 1 =head2 deliverynumber @@ -50,7 +55,7 @@ __PACKAGE__->table("aqorderdelivery"); __PACKAGE__->add_columns( "ordernumber", - { data_type => "date", is_nullable => 1 }, + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "deliverynumber", { data_type => "smallint", default_value => 0, is_nullable => 0 }, "deliverydate", @@ -62,8 +67,8 @@ __PACKAGE__->add_columns( ); -# Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LOGL7qHtUGwgWbKJ1HguXA +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hS/Ww/p7nHWiHNumkBifiQ # You can replace this text with custom content, and it will be preserved on regeneration