Merge AUTHOR and CONTRIBUTORS into a single AUTHORS section
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / Table.pm
1 package DBIx::Class::Schema::Loader::Table;
2
3 use strict;
4 use warnings;
5 use base 'DBIx::Class::Schema::Loader::DBObject';
6 use mro 'c3';
7
8 =head1 NAME
9
10 DBIx::Class::Schema::Loader::Table - Class for Tables in
11 L<DBIx::Class::Schema::Loader>
12
13 =head1 DESCRIPTION
14
15 Inherits from L<DBIx::Class::Schema::Loader::DBObject>. Stringifies to
16 C<< $table->name >>.
17
18 =head1 SEE ALSO
19
20 L<DBIx::Class::Schema::Loader::DBObject>, L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>
21
22 =head1 AUTHORS
23
24 See L<DBIx::Class::Schema::Loader/AUTHORS>.
25
26 =head1 LICENSE
27
28 This library is free software; you can redistribute it and/or modify it under
29 the same terms as Perl itself.
30
31 =cut
32
33 1;
34 # vim:et sts=4 sw=4 tw=0: