Increment version for 3.22.6 release
[koha.git] / Koha / Schema / Result / BranchTransferLimit.pm
bloba704c68ff90aea0625cba3305eb0cfa2e64ec36c
1 use utf8;
2 package Koha::Schema::Result::BranchTransferLimit;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::BranchTransferLimit
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<branch_transfer_limits>
20 =cut
22 __PACKAGE__->table("branch_transfer_limits");
24 =head1 ACCESSORS
26 =head2 limitId
28 accessor: 'limit_id'
29 data_type: 'integer'
30 is_auto_increment: 1
31 is_nullable: 0
33 =head2 toBranch
35 accessor: 'to_branch'
36 data_type: 'varchar'
37 is_nullable: 0
38 size: 10
40 =head2 fromBranch
42 accessor: 'from_branch'
43 data_type: 'varchar'
44 is_nullable: 0
45 size: 10
47 =head2 itemtype
49 data_type: 'varchar'
50 is_nullable: 1
51 size: 10
53 =head2 ccode
55 data_type: 'varchar'
56 is_nullable: 1
57 size: 10
59 =cut
61 __PACKAGE__->add_columns(
62 "limitId",
64 accessor => "limit_id",
65 data_type => "integer",
66 is_auto_increment => 1,
67 is_nullable => 0,
69 "toBranch",
71 accessor => "to_branch",
72 data_type => "varchar",
73 is_nullable => 0,
74 size => 10,
76 "fromBranch",
78 accessor => "from_branch",
79 data_type => "varchar",
80 is_nullable => 0,
81 size => 10,
83 "itemtype",
84 { data_type => "varchar", is_nullable => 1, size => 10 },
85 "ccode",
86 { data_type => "varchar", is_nullable => 1, size => 10 },
89 =head1 PRIMARY KEY
91 =over 4
93 =item * L</limitId>
95 =back
97 =cut
99 __PACKAGE__->set_primary_key("limitId");
102 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
103 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XPpJwcw5PRa7Fo7PRg32zg
106 # You can replace this text with custom content, and it will be preserved on regeneration