package Vee::Schema::ContestEffects;

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

=head1 NAME

Vee::Schema::ContestEffects - DBIC class for the C<contest_effects> table

=cut

__PACKAGE__->load_components('Core');
__PACKAGE__->table('contest_effects');
__PACKAGE__->add_columns(qw/ id appeal jam blurb_rusa description /);
__PACKAGE__->set_primary_key('id');

=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;
