Bug 11577: Add an automatic renewal cronjob
[koha.git] / Koha / Schema / Result / AuthSubfieldStructure.pm
1 use utf8;
2 package Koha::Schema::Result::AuthSubfieldStructure;
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::AuthSubfieldStructure
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<auth_subfield_structure>
19
20 =cut
21
22 __PACKAGE__->table("auth_subfield_structure");
23
24 =head1 ACCESSORS
25
26 =head2 authtypecode
27
28   data_type: 'varchar'
29   default_value: (empty string)
30   is_nullable: 0
31   size: 10
32
33 =head2 tagfield
34
35   data_type: 'varchar'
36   default_value: (empty string)
37   is_nullable: 0
38   size: 3
39
40 =head2 tagsubfield
41
42   data_type: 'varchar'
43   default_value: (empty string)
44   is_nullable: 0
45   size: 1
46
47 =head2 liblibrarian
48
49   data_type: 'varchar'
50   default_value: (empty string)
51   is_nullable: 0
52   size: 255
53
54 =head2 libopac
55
56   data_type: 'varchar'
57   default_value: (empty string)
58   is_nullable: 0
59   size: 255
60
61 =head2 repeatable
62
63   data_type: 'tinyint'
64   default_value: 0
65   is_nullable: 0
66
67 =head2 mandatory
68
69   data_type: 'tinyint'
70   default_value: 0
71   is_nullable: 0
72
73 =head2 tab
74
75   data_type: 'tinyint'
76   is_nullable: 1
77
78 =head2 authorised_value
79
80   data_type: 'varchar'
81   is_nullable: 1
82   size: 10
83
84 =head2 value_builder
85
86   data_type: 'varchar'
87   is_nullable: 1
88   size: 80
89
90 =head2 seealso
91
92   data_type: 'varchar'
93   is_nullable: 1
94   size: 255
95
96 =head2 isurl
97
98   data_type: 'tinyint'
99   is_nullable: 1
100
101 =head2 hidden
102
103   data_type: 'tinyint'
104   default_value: 0
105   is_nullable: 0
106
107 =head2 linkid
108
109   data_type: 'tinyint'
110   default_value: 0
111   is_nullable: 0
112
113 =head2 kohafield
114
115   data_type: 'varchar'
116   default_value: (empty string)
117   is_nullable: 1
118   size: 45
119
120 =head2 frameworkcode
121
122   data_type: 'varchar'
123   default_value: (empty string)
124   is_nullable: 0
125   size: 10
126
127 =head2 defaultvalue
128
129   data_type: 'text'
130   is_nullable: 1
131
132 =cut
133
134 __PACKAGE__->add_columns(
135   "authtypecode",
136   { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
137   "tagfield",
138   { data_type => "varchar", default_value => "", is_nullable => 0, size => 3 },
139   "tagsubfield",
140   { data_type => "varchar", default_value => "", is_nullable => 0, size => 1 },
141   "liblibrarian",
142   { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
143   "libopac",
144   { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
145   "repeatable",
146   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
147   "mandatory",
148   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
149   "tab",
150   { data_type => "tinyint", is_nullable => 1 },
151   "authorised_value",
152   { data_type => "varchar", is_nullable => 1, size => 10 },
153   "value_builder",
154   { data_type => "varchar", is_nullable => 1, size => 80 },
155   "seealso",
156   { data_type => "varchar", is_nullable => 1, size => 255 },
157   "isurl",
158   { data_type => "tinyint", is_nullable => 1 },
159   "hidden",
160   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
161   "linkid",
162   { data_type => "tinyint", default_value => 0, is_nullable => 0 },
163   "kohafield",
164   { data_type => "varchar", default_value => "", is_nullable => 1, size => 45 },
165   "frameworkcode",
166   { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
167   "defaultvalue",
168   { data_type => "text", is_nullable => 1 },
169 );
170
171 =head1 PRIMARY KEY
172
173 =over 4
174
175 =item * L</authtypecode>
176
177 =item * L</tagfield>
178
179 =item * L</tagsubfield>
180
181 =back
182
183 =cut
184
185 __PACKAGE__->set_primary_key("authtypecode", "tagfield", "tagsubfield");
186
187
188 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
189 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:24BKrmX1lug68+rmXE1riA
190
191
192 # You can replace this text with custom content, and it will be preserved on regeneration
193 1;