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

Revision 406, 403 bytes (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::GroupPermissions;
2
3use strict;
4use warnings;
5use base 'DBIx::Class';
6
7=head1 NAME
8
9Vee::Schema::GroupPermissions - DBIC class for the C<group_permissions> table
10
11=cut
12
13__PACKAGE__->load_components('Core');
14__PACKAGE__->table('group_permissions');
15__PACKAGE__->add_columns(qw/ group_id permission scope polarity /);
16__PACKAGE__->set_primary_key(qw/ group_id permission scope /);
17
181;
Note: See TracBrowser for help on using the browser.