2 package Koha
::Schema
::Result
::BorrowerPasswordRecovery
;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 Koha::Schema::Result::BorrowerPasswordRecovery
16 use base
'DBIx::Class::Core';
18 =head1 TABLE: C<borrower_password_recovery>
22 __PACKAGE__
->table("borrower_password_recovery");
39 data_type: 'timestamp'
40 datetime_undef_if_invalid: 1
41 default_value: current_timestamp
46 __PACKAGE__
->add_columns(
48 { data_type
=> "integer", is_nullable
=> 0 },
50 { data_type
=> "varchar", is_nullable
=> 0, size
=> 128 },
53 data_type
=> "timestamp",
54 datetime_undef_if_invalid
=> 1,
55 default_value
=> \"current_timestamp
",
64 =item * L</borrowernumber>
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