NAME
DBIx::Inspector::Table - table object
METHODS
- $table->catalog()
 - $table->schema()
 - $table->type()
 - $table->name()
 - 
Get each attributes.
 - my @columns = $table->columns();
 - 
Get DBIx::Inspector::Column objects.
 - my $column = $table->column($name);
 - 
Get DBIx::Inspector::Column object for $name.
 - my @pk = $table->primary_key();
 - 
Get DBIx::Inspector::Column objects for primary keys.