NAME

Schema::Test::0_2_0::Result::Person - DBIx::Class result class for the person table in schema version 0.2.0.

SYNOPSIS

use Schema::Test::0_2_0::Result::Person;

my $obj = Schema::Test::0_2_0::Result::Person->new(%params);
my $table = $obj->table;
my $table = Schema::Test::0_2_0::Result::Person->table;

DESCRIPTION

DBIx::Class result class for the person table in the 0.2.0 schema version. The class inherits row behavior from DBIx::Class::Row and source behavior from DBIx::Class::ResultSourceProxy::Table. It loads DBIx::Class::InflateColumn::DateTime for the created_at column.

METHODS

new

my $obj = Schema::Test::0_2_0::Result::Person->new(%params);

Returns instance of object.

table

my $table = $obj->table;
my $table = Schema::Test::0_2_0::Result::Person->table;

Get person table name.

Returns string.

SEE ALSO

DBIx::Class::Row

Base class for row instances returned by new.

DBIx::Class::InflateColumn::DateTime

Adds date and time column inflation for created_at.

DBIx::Class::ResultSourceProxy::Table

Provides the table class method.

DEPENDENCIES

DBIx::Class::Core, DBIx::Class::InflateColumn::DateTime, Schema::Test::0_2_0

REPOSITORY

https://github.com/michal-josef-spacek/Schema-Test

AUTHOR

Michal Josef Špaček <skim@cpan.org>

LICENSE AND COPYRIGHT

Copyright (c) 2022-2026 Michal Josef Špaček.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

VERSION

0.02