| 10 | | __PACKAGE__->load_components("PK::Auto", "Core"); |
| 11 | | __PACKAGE__->table("creators"); |
| 12 | | __PACKAGE__->add_columns("id", "userid", "name", "itemct"); |
| 13 | | __PACKAGE__->set_primary_key("id"); |
| 14 | | __PACKAGE__->add_unique_constraint("userid", ["userid"]); |
| 15 | | __PACKAGE__->add_unique_constraint(["userid"], undef); |
| 16 | | __PACKAGE__->add_unique_constraint(["id"], undef); |
| | 7 | =head1 NAME |
| | 8 | |
| | 9 | Vee::Schema::Creators - DBIC class for the C<creators> table |
| | 10 | |
| | 11 | =cut |
| | 12 | |
| | 13 | __PACKAGE__->load_components('Core'); |
| | 14 | __PACKAGE__->table('creators'); |
| | 15 | __PACKAGE__->add_columns(qw/ id userid name itemct /); |
| | 16 | __PACKAGE__->set_primary_key('id'); |
| | 17 | __PACKAGE__->add_unique_constraint(userid => ['userid']); |
| | 18 | |
| | 19 | =head1 SEE ALSO |
| | 20 | |
| | 21 | L<Vee::Schema>, L<DBIx::Class> |
| | 22 | |
| | 23 | =head1 AUTHOR |
| | 24 | |
| | 25 | Maintainer: Alex "Eevee" Munroe (C<veekun@veekun.com>) |
| | 26 | |
| | 27 | See the included F<AUTHORS> file for a full list of contributers. |
| | 28 | |
| | 29 | =head1 LICENSE |
| | 30 | |
| | 31 | See the included F<LICENSE> file. |
| | 32 | |
| | 33 | =cut |