|
Lines 133-138
__PACKAGE__->table("categories");
Link Here
|
| 133 |
data_type: 'tinyint' |
133 |
data_type: 'tinyint' |
| 134 |
is_nullable: 1 |
134 |
is_nullable: 1 |
| 135 |
|
135 |
|
|
|
136 |
=head2 min_password_length |
| 137 |
|
| 138 |
data_type: 'smallint' |
| 139 |
is_nullable: 1 |
| 140 |
|
| 141 |
=head2 require_strong_password |
| 142 |
|
| 143 |
data_type: 'tinyint' |
| 144 |
is_nullable: 1 |
| 145 |
|
| 136 |
=cut |
146 |
=cut |
| 137 |
|
147 |
|
| 138 |
__PACKAGE__->add_columns( |
148 |
__PACKAGE__->add_columns( |
|
Lines 189-194
__PACKAGE__->add_columns(
Link Here
|
| 189 |
{ data_type => "tinyint", is_nullable => 1 }, |
199 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 190 |
"change_password", |
200 |
"change_password", |
| 191 |
{ data_type => "tinyint", is_nullable => 1 }, |
201 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
202 |
"min_password_length", |
| 203 |
{ data_type => "smallint", is_nullable => 1 }, |
| 204 |
"require_strong_password", |
| 205 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 192 |
); |
206 |
); |
| 193 |
|
207 |
|
| 194 |
=head1 PRIMARY KEY |
208 |
=head1 PRIMARY KEY |
|
Lines 266-273
__PACKAGE__->has_many(
Link Here
|
| 266 |
); |
280 |
); |
| 267 |
|
281 |
|
| 268 |
|
282 |
|
| 269 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-04-12 02:43:58 |
283 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-06 15:19:50 |
| 270 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7rwTH9HuxcdRCBP/bj0d/A |
284 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DDhWUDxS5ALii+Ap2VrnJQ |
| 271 |
|
285 |
|
| 272 |
sub koha_object_class { |
286 |
sub koha_object_class { |
| 273 |
'Koha::Patron::Category'; |
287 |
'Koha::Patron::Category'; |
| 274 |
- |
|
|