View | Details | Raw Unified | Return to bug 23816
Collapse All | Expand All

(-)a/Koha/Schema/Result/Category.pm (-3 / +16 lines)
Lines 138-143 __PACKAGE__->table("categories"); Link Here
138
  data_type: 'tinyint'
138
  data_type: 'tinyint'
139
  is_nullable: 1
139
  is_nullable: 1
140
140
141
=head2 min_password_length
142
143
  data_type: 'smallint'
144
  is_nullable: 1
145
146
=head2 require_strong_password
147
148
  data_type: 'tinyint'
149
  is_nullable: 1
150
141
=cut
151
=cut
142
152
143
__PACKAGE__->add_columns(
153
__PACKAGE__->add_columns(
Lines 196-201 __PACKAGE__->add_columns( Link Here
196
  { data_type => "tinyint", is_nullable => 1 },
206
  { data_type => "tinyint", is_nullable => 1 },
197
  "exclude_from_local_holds_priority",
207
  "exclude_from_local_holds_priority",
198
  { data_type => "tinyint", is_nullable => 1 },
208
  { data_type => "tinyint", is_nullable => 1 },
209
  "min_password_length",
210
  { data_type => "smallint", is_nullable => 1 },
211
  "require_strong_password",
212
  { data_type => "tinyint", is_nullable => 1 },
199
);
213
);
200
214
201
=head1 PRIMARY KEY
215
=head1 PRIMARY KEY
Lines 288-295 __PACKAGE__->has_many( Link Here
288
);
302
);
289
303
290
304
291
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-22 17:36:24
305
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-09-02 12:50:50
292
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p5Jzm0gHhk42fcLikwUnWw
306
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JOzFLxLwouaTl5dQJrOdZA
293
307
294
__PACKAGE__->add_columns(
308
__PACKAGE__->add_columns(
295
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
309
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
296
- 

Return to bug 23816