Bug 21797: Update two-column templates with Bootstrap grid: Acquisitions part 5
[koha.git] / Koha / Schema / Result / BorrowerPasswordRecovery.pm
blobc7f567d102cc8d1d526a71bb93a8cb293d90f6a6
1 use utf8;
2 package Koha::Schema::Result::BorrowerPasswordRecovery;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::BorrowerPasswordRecovery
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<borrower_password_recovery>
20 =cut
22 __PACKAGE__->table("borrower_password_recovery");
24 =head1 ACCESSORS
26 =head2 borrowernumber
28 data_type: 'integer'
29 is_nullable: 0
31 =head2 uuid
33 data_type: 'varchar'
34 is_nullable: 0
35 size: 128
37 =head2 valid_until
39 data_type: 'timestamp'
40 datetime_undef_if_invalid: 1
41 default_value: current_timestamp
42 is_nullable: 0
44 =cut
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",
53 data_type => "timestamp",
54 datetime_undef_if_invalid => 1,
55 default_value => \"current_timestamp",
56 is_nullable => 0,
60 =head1 PRIMARY KEY
62 =over 4
64 =item * L</borrowernumber>
66 =back
68 =cut
70 __PACKAGE__->set_primary_key("borrowernumber");
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
77 # You can replace this text with custom code or comments, and it will be preserved on regeneration