1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
use utf8;
package CiderWebmail::DB::Result::RecentContacts;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
CiderWebmail::DB::Result::RecentContacts
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 TABLE: C<recent_contacts>
=cut
__PACKAGE__->table("recent_contacts");
=head1 ACCESSORS
=head2 user
data_type: 'varchar'
is_nullable: 0
=head2 name
data_type: 'varchar'
is_nullable: 0
=head2 email
data_type: 'varchar'
is_nullable: 0
=head2 last_used
data_type: 'date'
is_nullable: 0
=cut
__PACKAGE__->add_columns(
"user",
{ data_type => "varchar", is_nullable => 0 },
"name",
{ data_type => "varchar", is_nullable => 0 },
"email",
{ data_type => "varchar", is_nullable => 0 },
"last_used",
{ data_type => "date", is_nullable => 0 },
);
=head1 PRIMARY KEY
=over 4
=item * L</user>
=item * L</email>
=back
=cut
__PACKAGE__->set_primary_key("user", "email");
# Created by DBIx::Class::Schema::Loader v0.07043 @ 2015-07-29 00:41:59
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8XejaYHnu66XKGWCsvzmew
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
|