| 10 | | __PACKAGE__->load_components("PK::Auto", "Core"); |
| 11 | | __PACKAGE__->table("grouppermissions"); |
| 12 | | __PACKAGE__->add_columns("groupid", "permission", "scope", "polarity"); |
| 13 | | __PACKAGE__->set_primary_key("groupid", "permission", "scope"); |
| 14 | | __PACKAGE__->add_unique_constraint(["groupid", "permission", "scope"], undef); |
| | 7 | =head1 NAME |
| | 8 | |
| | 9 | Vee::Schema::GroupPermissions - DBIC class for the C<grouppermissions> table |
| | 10 | |
| | 11 | =cut |
| | 12 | |
| | 13 | __PACKAGE__->load_components('Core'); |
| | 14 | __PACKAGE__->table('grouppermissions'); |
| | 15 | __PACKAGE__->add_columns(qw/ groupid permission scope polarity /); |
| | 16 | __PACKAGE__->set_primary_key(qw/ groupid permission scope /); |