Add device token registration

This commit is contained in:
Ben Goldsworthy 2020-11-08 15:15:28 +00:00
parent 279127a6d4
commit 7500f95d88
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,47 @@
package Pear::LocalLoop::Schema::Result::DeviceToken;
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->load_components( qw/
InflateColumn::DateTime
TimeStamp
FilterColumn
/);
__PACKAGE__->table("device_tokens");
__PACKAGE__->add_columns(
"id" => {
data_type => "integer",
is_auto_increment => 1,
is_nullable => 0,
},
"user_id" => {
data_type => "integer",
is_foreign_key => 1,
is_nullable => 0,
},
"token" => {
data_type => "varchar",
size => 200,
is_nullable => 0,
},
"register_date" => {
data_type => "datetime",
set_on_create => 1,
},
);
__PACKAGE__->set_primary_key("id");
__PACKAGE__->belongs_to(
"user",
"Pear::LocalLoop::Schema::Result::User",
{ id => "user_id" },
{ is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
);
1;

View File

@ -71,6 +71,13 @@ __PACKAGE__->has_many(
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->has_many(
"device_tokens",
"Pear::LocalLoop::Schema::Result::DeviceToken",
{ "foreign.user_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
__PACKAGE__->has_many(
"feedback",
"Pear::LocalLoop::Schema::Result::Feedback",