Lines 112-117
__PACKAGE__->table("itemtypes");
Link Here
|
112 |
is_nullable: 1 |
112 |
is_nullable: 1 |
113 |
size: 80 |
113 |
size: 80 |
114 |
|
114 |
|
|
|
115 |
=head2 can_suspend_hold |
116 |
|
117 |
data_type: 'tinyint' |
118 |
default_value: 1 |
119 |
is_nullable: 0 |
120 |
|
121 |
=head2 can_cancel_hold |
122 |
|
123 |
data_type: 'tinyint' |
124 |
default_value: 1 |
125 |
is_nullable: 0 |
126 |
|
115 |
=cut |
127 |
=cut |
116 |
|
128 |
|
117 |
__PACKAGE__->add_columns( |
129 |
__PACKAGE__->add_columns( |
Lines 150-155
__PACKAGE__->add_columns(
Link Here
|
150 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
162 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
151 |
"searchcategory", |
163 |
"searchcategory", |
152 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
164 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
|
|
165 |
"can_suspend_hold", |
166 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
167 |
"can_cancel_hold", |
168 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
153 |
); |
169 |
); |
154 |
|
170 |
|
155 |
=head1 PRIMARY KEY |
171 |
=head1 PRIMARY KEY |
Lines 227-234
__PACKAGE__->has_many(
Link Here
|
227 |
); |
243 |
); |
228 |
|
244 |
|
229 |
|
245 |
|
230 |
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48 |
246 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-10 13:05:13 |
231 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg |
247 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:imkleCMSxzQGqs6WXdLmjA |
232 |
|
248 |
|
233 |
# Use the ItemtypeLocalization view to create the join on localization |
249 |
# Use the ItemtypeLocalization view to create the join on localization |
234 |
our $LANGUAGE; |
250 |
our $LANGUAGE; |
235 |
- |
|
|