add notes about table object stringify to name
[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
7 =head1 NAME
8
9 DBIx::Class::Schema::Loader::Table - Class for Tables in
10 L<DBIx::Class::Schema::Loader>
11
12 =head1 DESCRIPTION
13
14 Inherits from L<DBIx::Class::Schema::Loader::DBObject>. Stringifies to
15 C<< $table->name >>.
16
17 =head1 SEE ALSO
18
19 L<DBIx::Class::Schema::Loader::DBObject>, L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>
20
21 =head1 AUTHOR
22
23 See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
24
25 =head1 LICENSE
26
27 This library is free software; you can redistribute it and/or modify it under
28 the same terms as Perl itself.
29
30 =cut
31
32 1;
33 # vim:et sts=4 sw=4 tw=0: