7f5bdb4c9afc21f8f9d37fe17051cb03107fda73
[koha-equinox.git] / Koha / Schema / Result / BranchTransferLimit.pm
1 use utf8;
2 package Koha::Schema::Result::BranchTransferLimit;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Koha::Schema::Result::BranchTransferLimit
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<branch_transfer_limits>
19
20 =cut
21
22 __PACKAGE__->table("branch_transfer_limits");
23
24 =head1 ACCESSORS
25
26 =head2 limitId
27
28   accessor: 'limit_id'
29   data_type: 'integer'
30   is_auto_increment: 1
31   is_nullable: 0
32
33 =head2 toBranch
34
35   accessor: 'to_branch'
36   data_type: 'varchar'
37   is_nullable: 0
38   size: 10
39
40 =head2 fromBranch
41
42   accessor: 'from_branch'
43   data_type: 'varchar'
44   is_nullable: 0
45   size: 10
46
47 =head2 itemtype
48
49   data_type: 'varchar'
50   is_nullable: 1
51   size: 10
52
53 =head2 ccode
54
55   data_type: 'varchar'
56   is_nullable: 1
57   size: 80
58
59 =cut
60
61 __PACKAGE__->add_columns(
62   "limitId",
63   {
64     accessor          => "limit_id",
65     data_type         => "integer",
66     is_auto_increment => 1,
67     is_nullable       => 0,
68   },
69   "toBranch",
70   {
71     accessor => "to_branch",
72     data_type => "varchar",
73     is_nullable => 0,
74     size => 10,
75   },
76   "fromBranch",
77   {
78     accessor => "from_branch",
79     data_type => "varchar",
80     is_nullable => 0,
81     size => 10,
82   },
83   "itemtype",
84   { data_type => "varchar", is_nullable => 1, size => 10 },
85   "ccode",
86   { data_type => "varchar", is_nullable => 1, size => 80 },
87 );
88
89 =head1 PRIMARY KEY
90
91 =over 4
92
93 =item * L</limitId>
94
95 =back
96
97 =cut
98
99 __PACKAGE__->set_primary_key("limitId");
100
101
102 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-26 16:15:09
103 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wKere4dleMGrs9RO59qx9Q
104
105
106 # You can replace this text with custom content, and it will be preserved on regeneration
107 1;