add a Table class
[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::TableLike';
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::TableLike>.
15
16 =head1 SEE ALSO
17
18 L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>, L<DBIx::Class::Schema::Loader::TableLike>
19
20 =head1 AUTHOR
21
22 See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
23
24 =head1 LICENSE
25
26 This library is free software; you can redistribute it and/or modify it under
27 the same terms as Perl itself.
28
29 =cut
30
31 1;
32 # vim:et sts=4 sw=4 tw=0: