Bug 8798: DBIx::Class base classes for all Koha tables
[koha_fer] / Koha / Schema / Result / Aqorderdelivery.pm
1 package Koha::Schema::Result::Aqorderdelivery;
2
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
5
6 use strict;
7 use warnings;
8
9 use base 'DBIx::Class::Core';
10
11
12 =head1 NAME
13
14 Koha::Schema::Result::Aqorderdelivery
15
16 =cut
17
18 __PACKAGE__->table("aqorderdelivery");
19
20 =head1 ACCESSORS
21
22 =head2 ordernumber
23
24   data_type: 'date'
25   is_nullable: 1
26
27 =head2 deliverynumber
28
29   data_type: 'smallint'
30   default_value: 0
31   is_nullable: 0
32
33 =head2 deliverydate
34
35   data_type: 'varchar'
36   is_nullable: 1
37   size: 18
38
39 =head2 qtydelivered
40
41   data_type: 'smallint'
42   is_nullable: 1
43
44 =head2 deliverycomments
45
46   data_type: 'mediumtext'
47   is_nullable: 1
48
49 =cut
50
51 __PACKAGE__->add_columns(
52   "ordernumber",
53   { data_type => "date", is_nullable => 1 },
54   "deliverynumber",
55   { data_type => "smallint", default_value => 0, is_nullable => 0 },
56   "deliverydate",
57   { data_type => "varchar", is_nullable => 1, size => 18 },
58   "qtydelivered",
59   { data_type => "smallint", is_nullable => 1 },
60   "deliverycomments",
61   { data_type => "mediumtext", is_nullable => 1 },
62 );
63
64
65 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
66 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LOGL7qHtUGwgWbKJ1HguXA
67
68
69 # You can replace this text with custom content, and it will be preserved on regeneration
70 1;