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

(-)a/Koha/Schema/Result/Category.pm (-3 / +9 lines)
Lines 123-128 __PACKAGE__->table("categories"); Link Here
123
  is_nullable: 0
123
  is_nullable: 0
124
  size: 7
124
  size: 7
125
125
126
=head2 reset_password
127
128
  data_type: 'tinyint'
129
  is_nullable: 1
130
126
=cut
131
=cut
127
132
128
__PACKAGE__->add_columns(
133
__PACKAGE__->add_columns(
Lines 175-180 __PACKAGE__->add_columns( Link Here
175
    is_nullable => 0,
180
    is_nullable => 0,
176
    size => 7,
181
    size => 7,
177
  },
182
  },
183
  "reset_password",
184
  { data_type => "tinyint", is_nullable => 1 },
178
);
185
);
179
186
180
=head1 PRIMARY KEY
187
=head1 PRIMARY KEY
Lines 282-289 __PACKAGE__->might_have( Link Here
282
);
289
);
283
290
284
291
285
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-05 14:29:17
292
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-02-06 13:49:56
286
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yvHcgnSv1RXNMXJixVtt0Q
293
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mxGB87mA1hlowEF+tuMPLg
287
294
288
295
289
# You can replace this text with custom content, and it will be preserved on regeneration
296
# You can replace this text with custom content, and it will be preserved on regeneration
290
- 

Return to bug 21890