Bug 7736: (QA followup) Remove obsolete Schema module
[koha.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 =head1 PRIMARY KEY
61
62 =over 4
63
64 =item * L</borrowernumber>
65
66 =back
67
68 =cut
69
70 __PACKAGE__->set_primary_key("borrowernumber");
71
72
73 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2016-01-22 10:16:52
74 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:c4ehAGqOD6YHpGg85BX8YQ
75
76
77 # You can replace this text with custom code or comments, and it will be preserved on regeneration
78
79 1;