package Vee::Schema::FlavorText;

use strict;
use warnings;
use base 'DBIx::Class';

=head1 NAME

Vee::Schema::FlavorText - DBIC class for the C<flavortext> table

=cut

__PACKAGE__->load_components('Core');
__PACKAGE__->table('flavortext');
__PACKAGE__->add_columns(qw/ pokeid generation text /);

__PACKAGE__->belongs_to(pokemon => 'Vee::Schema::Pokemon', 'pokeid');

=head1 SEE ALSO

L<Vee::Schema>, L<DBIx::Class>

=head1 AUTHOR

Maintainer: Alex "Eevee" Munroe (C<veekun@veekun.com>)

See the included F<AUTHORS> file for a full list of contributers.

=head1 LICENSE

See the included F<LICENSE> file.

=cut

1;
