You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
1.8 KiB
112 lines
1.8 KiB
use utf8;
|
|
package MJB::DB::Result::Invite;
|
|
|
|
# Created by DBIx::Class::Schema::Loader
|
|
# DO NOT MODIFY THE FIRST PART OF THIS FILE
|
|
|
|
=head1 NAME
|
|
|
|
MJB::DB::Result::Invite
|
|
|
|
=cut
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use base 'DBIx::Class::Core';
|
|
|
|
=head1 COMPONENTS LOADED
|
|
|
|
=over 4
|
|
|
|
=item * L<DBIx::Class::InflateColumn::DateTime>
|
|
|
|
=item * L<DBIx::Class::InflateColumn::Serializer>
|
|
|
|
=back
|
|
|
|
=cut
|
|
|
|
__PACKAGE__->load_components("InflateColumn::DateTime", "InflateColumn::Serializer");
|
|
|
|
=head1 TABLE: C<invite>
|
|
|
|
=cut
|
|
|
|
__PACKAGE__->table("invite");
|
|
|
|
=head1 ACCESSORS
|
|
|
|
=head2 id
|
|
|
|
data_type: 'integer'
|
|
is_auto_increment: 1
|
|
is_nullable: 0
|
|
sequence: 'invite_id_seq'
|
|
|
|
=head2 code
|
|
|
|
data_type: 'text'
|
|
is_nullable: 0
|
|
|
|
=head2 is_active
|
|
|
|
data_type: 'boolean'
|
|
default_value: true
|
|
is_nullable: 0
|
|
|
|
=head2 is_one_time_use
|
|
|
|
data_type: 'boolean'
|
|
default_value: true
|
|
is_nullable: 0
|
|
|
|
=head2 created_at
|
|
|
|
data_type: 'timestamp with time zone'
|
|
default_value: current_timestamp
|
|
is_nullable: 0
|
|
|
|
=cut
|
|
|
|
__PACKAGE__->add_columns(
|
|
"id",
|
|
{
|
|
data_type => "integer",
|
|
is_auto_increment => 1,
|
|
is_nullable => 0,
|
|
sequence => "invite_id_seq",
|
|
},
|
|
"code",
|
|
{ data_type => "text", is_nullable => 0 },
|
|
"is_active",
|
|
{ data_type => "boolean", default_value => \"true", is_nullable => 0 },
|
|
"is_one_time_use",
|
|
{ data_type => "boolean", default_value => \"true", is_nullable => 0 },
|
|
"created_at",
|
|
{
|
|
data_type => "timestamp with time zone",
|
|
default_value => \"current_timestamp",
|
|
is_nullable => 0,
|
|
},
|
|
);
|
|
|
|
=head1 PRIMARY KEY
|
|
|
|
=over 4
|
|
|
|
=item * L</id>
|
|
|
|
=back
|
|
|
|
=cut
|
|
|
|
__PACKAGE__->set_primary_key("id");
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-09 15:14:54
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fKY1dtin3SHa2Elljm4C9Q
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
|
1;
|
|
|