50cc3d35f7502a6c2f14985ca3633cc9b5156b2b
[koha.git] / Koha / Schema / Result / AqordersItem.pm
1 package Koha::Schema::Result::AqordersItem;
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::AqordersItem
15
16 =cut
17
18 __PACKAGE__->table("aqorders_items");
19
20 =head1 ACCESSORS
21
22 =head2 ordernumber
23
24   data_type: 'integer'
25   is_nullable: 0
26
27 =head2 itemnumber
28
29   data_type: 'integer'
30   is_nullable: 0
31
32 =head2 timestamp
33
34   data_type: 'timestamp'
35   default_value: current_timestamp
36   is_nullable: 0
37
38 =cut
39
40 __PACKAGE__->add_columns(
41   "ordernumber",
42   { data_type => "integer", is_nullable => 0 },
43   "itemnumber",
44   { data_type => "integer", is_nullable => 0 },
45   "timestamp",
46   {
47     data_type     => "timestamp",
48     default_value => \"current_timestamp",
49     is_nullable   => 0,
50   },
51 );
52 __PACKAGE__->set_primary_key("itemnumber");
53
54
55 # Created by DBIx::Class::Schema::Loader v0.07000 @ 2012-09-02 08:44:15
56 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OlihytSmp6fCmG/hAT7FEg
57
58
59 # You can replace this text with custom content, and it will be preserved on regeneration
60 1;