Increment version for 3.22.6 release
[koha.git] / Koha / Schema / Result / CollectionsTracking.pm
blob4a55cbdf37f8df0a9e4a0ff8f627dcdce65eb2d8
1 use utf8;
2 package Koha::Schema::Result::CollectionsTracking;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::CollectionsTracking
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<collections_tracking>
20 =cut
22 __PACKAGE__->table("collections_tracking");
24 =head1 ACCESSORS
26 =head2 collections_tracking_id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 colId
34 accessor: 'col_id'
35 data_type: 'integer'
36 default_value: 0
37 is_nullable: 0
39 collections.colId
41 =head2 itemnumber
43 data_type: 'integer'
44 default_value: 0
45 is_nullable: 0
47 items.itemnumber
49 =cut
51 __PACKAGE__->add_columns(
52 "collections_tracking_id",
53 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
54 "colId",
56 accessor => "col_id",
57 data_type => "integer",
58 default_value => 0,
59 is_nullable => 0,
61 "itemnumber",
62 { data_type => "integer", default_value => 0, is_nullable => 0 },
65 =head1 PRIMARY KEY
67 =over 4
69 =item * L</collections_tracking_id>
71 =back
73 =cut
75 __PACKAGE__->set_primary_key("collections_tracking_id");
78 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
79 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:s8ZFSmMJt313bz3XdlhITQ
82 # You can replace this text with custom code or comments, and it will be preserved on regeneration