Bug 8753 - Add forgot password link to OPAC
[koha-ffzg.git] / Koha / Schema / Result / BorrowerPasswordRecovery.pm
1 use utf8;
2 package Koha::Schema::Result::BorrowerPasswordRecovery;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Koha::Schema::Result::BorrowerPasswordRecovery
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<borrower_password_recovery>
19
20 =cut
21
22 __PACKAGE__->table("borrower_password_recovery");
23
24 =head1 ACCESSORS
25
26 =head2 borrowernumber
27
28   data_type: 'integer'
29   is_nullable: 0
30
31 =head2 uuid
32
33   data_type: 'varchar'
34   is_nullable: 0
35   size: 128
36
37 =head2 valid_until
38
39   data_type: 'timestamp'
40   datetime_undef_if_invalid: 1
41   default_value: current_timestamp
42   is_nullable: 0
43
44 =cut
45
46 __PACKAGE__->add_columns(
47   "borrowernumber",
48   { data_type => "integer", is_nullable => 0 },
49   "uuid",
50   { data_type => "varchar", is_nullable => 0, size => 128 },
51   "valid_until",
52   {
53     data_type => "timestamp",
54     datetime_undef_if_invalid => 1,
55     default_value => \"current_timestamp",
56     is_nullable => 0,
57   },
58 );
59
60
61 # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-11-03 12:08:20
62 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ORAWxUHIkefSfPSqrcfeXA
63
64
65 # You can replace this text with custom code or comments, and it will be preserved on regeneration
66 1;