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