MT#6789 Add relations for email notification.

- billing.subscribers can have contacts
- new billing.password_resets for holding reset attempts
mr3.3.1
Andreas Granig 11 years ago
parent 7205c140c3
commit f6487e6dbf

@ -183,14 +183,14 @@ __PACKAGE__->has_many(
__PACKAGE__->belongs_to( __PACKAGE__->belongs_to(
"subscriber_email_template", "subscriber_email_template",
"NGCP::Schema::Result::email_tempaltes", "NGCP::Schema::Result::email_templates",
{ "foreign.id" => "self.subscriber_email_template_id" }, { "foreign.id" => "self.subscriber_email_template_id" },
{ cascade_copy => 0, cascade_delete => 0 }, { cascade_copy => 0, cascade_delete => 0 },
); );
__PACKAGE__->belongs_to( __PACKAGE__->belongs_to(
"passreset_email_template", "passreset_email_template",
"NGCP::Schema::Result::email_tempaltes", "NGCP::Schema::Result::email_templates",
{ "foreign.id" => "self.subscriber_email_template_id" }, { "foreign.id" => "self.subscriber_email_template_id" },
{ cascade_copy => 0, cascade_delete => 0 }, { cascade_copy => 0, cascade_delete => 0 },
); );

@ -0,0 +1,118 @@
package NGCP::Schema::Result::password_resets;
use Scalar::Util qw(blessed);
use parent 'DBIx::Class::Core';
our $VERSION = '2.007';
__PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON");
__PACKAGE__->table("billing.password_resets");
__PACKAGE__->add_columns(
"id",
{
data_type => "integer",
extra => { unsigned => 1 },
is_auto_increment => 1,
is_nullable => 0,
},
"subscriber_id",
{
data_type => "integer",
extra => { unsigned => 1 },
is_foreign_key => 1,
is_nullable => 0,
},
"uuid",
{ data_type => "char", is_nullable => 0, size => 36 },
"timestamp",
{ data_type => "integer", extra => { unsigned => 1 }, is_nullable => 0 },
);
__PACKAGE__->set_primary_key("id");
__PACKAGE__->belongs_to(
"voip_subscriber",
"NGCP::Schema::Result::voip_subscribers",
{ id => "subscriber_id" },
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
);
sub TO_JSON {
my ($self) = @_;
return {
map { blessed($_) && $_->isa('DateTime') ? $_->datetime : $_ } %{ $self->next::method }
};
}
=encoding UTF-8
=head1 NAME
NGCP::Schema::Result::password_resets
=head1 COMPONENTS LOADED
=over 4
=item * L<DBIx::Class::InflateColumn::DateTime>
=item * L<DBIx::Class::Helper::Row::ToJSON>
=back
=head1 TABLE: C<password_resets>
=head1 ACCESSORS
=head2 id
data_type: 'integer'
extra: {unsigned => 1}
is_auto_increment: 1
is_nullable: 0
=head2 subscriber_id
data_type: 'integer'
extra: {unsigned => 1}
is_foreign_key: 1
is_nullable: 0
=head2 uuid
data_type: 'char'
is_nullable: 0
size: 36
=head2 timestamp
data_type: 'integer'
extra: {unsigned => 1}
is_nullable: 0
=head1 PRIMARY KEY
=over 4
=item * L</id>
=back
=head1 RELATIONS
=head2 subscriber
Type: belongs_to
Related object: L<NGCP::Schema::Result::voip_subscribers>
=cut
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2014-04-28 15:50:56
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:B41r1bAcgmQ5sLZvgFBlGg
# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;

@ -50,6 +50,13 @@ __PACKAGE__->add_columns(
}, },
"external_id", "external_id",
{ data_type => "varchar", is_nullable => 1, size => 255 }, { data_type => "varchar", is_nullable => 1, size => 255 },
"contact_id",
{
data_type => "integer",
extra => { unsigned => 1 },
is_foreign_key => 1,
is_nullable => 1,
},
); );
__PACKAGE__->set_primary_key("id"); __PACKAGE__->set_primary_key("id");
@ -89,6 +96,13 @@ __PACKAGE__->has_many(
{ cascade_copy => 0, cascade_delete => 0 }, { cascade_copy => 0, cascade_delete => 0 },
); );
__PACKAGE__->has_many(
"password_resets",
"NGCP::Schema::Result::password_resets",
{ "foreign.subscriber_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->might_have( __PACKAGE__->might_have(
"provisioning_voip_subscriber", "provisioning_voip_subscriber",
'NGCP::Schema::Result::provisioning_voip_subscribers', 'NGCP::Schema::Result::provisioning_voip_subscribers',
@ -96,6 +110,13 @@ __PACKAGE__->might_have(
{ cascade_copy => 0, cascade_delete => 0 }, { cascade_copy => 0, cascade_delete => 0 },
); );
__PACKAGE__->belongs_to(
"contact",
"NGCP::Schema::Result::contacts",
{ id => "contact_id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
sub TO_JSON { sub TO_JSON {
my ($self) = @_; my ($self) = @_;
return { return {

Loading…
Cancel
Save