|
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 |
| 195 |
- |
|
|