root/veekun/trunk/lib/Vee/Schema/GalleryKeywords.pm

Revision 406, 0.6 KB (checked in by eevee, 2 years ago)

Database refactoring. Renamed columns and tables to be more consistent and more readable. (#58)

Line 
1package Vee::Schema::GalleryKeywords;
2
3use strict;
4use warnings;
5use base 'DBIx::Class';
6
7=head1 NAME
8
9Vee::Schema::GalleryKeywords - DBIC class for the C<gallerykeywords> table
10
11=cut
12
13__PACKAGE__->load_components('Core');
14__PACKAGE__->table('gallery_keywords');
15__PACKAGE__->add_columns(qw/ id keyword category description /);
16__PACKAGE__->set_primary_key('id');
17
18=head1 SEE ALSO
19
20L<Vee::Schema>, L<DBIx::Class>
21
22=head1 AUTHOR
23
24Maintainer: Alex "Eevee" Munroe (C<veekun@veekun.com>)
25
26See the included F<AUTHORS> file for a full list of contributers.
27
28=head1 LICENSE
29
30See the included F<LICENSE> file.
31
32=cut
33
341;
Note: See TracBrowser for help on using the browser.