The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Parley::Schema::PasswordReset;
use strict;
use warnings;

use Parley::Version;  our $VERSION = $Parley::VERSION;

use base 'DBIx::Class';

__PACKAGE__->load_components("PK::Auto", "Core");
__PACKAGE__->table("parley.password_reset");
__PACKAGE__->add_columns(

  id => {
    data_type => "integer",
    is_nullable => 0,
    size => undef,
  },

  recipient_id => {
    data_type => "integer",
    default_value => undef,
    is_nullable => 0,
    size => 4
  },

  expires => {
    data_type => "timestamp without time zone",
    is_nullable => 1,
    size => 8,
  },
);

__PACKAGE__->set_primary_key("id");

__PACKAGE__->belongs_to(
    "recipient" => "Person",
    { 'foreign.id' => 'self.recipient_id' }
);

1;