summaryrefslogtreecommitdiff
path: root/install/5.005/DBIx-DBSchema-0.23-5.005kludge/DBSchema/ColGroup/Index.pm
blob: 1a92baae1564b76e5c48a43071499c586c92327e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package DBIx::DBSchema::ColGroup::Index;

use strict;
use vars qw(@ISA);
use DBIx::DBSchema::ColGroup;

@ISA=qw(DBIx::DBSchema::ColGroup);

=head1 NAME

DBIx::DBSchema::ColGroup::Index - Index column group object

=head1 SYNOPSIS

  use DBIx::DBSchema::ColGroup::Index;

    # see DBIx::DBSchema::ColGroup methods

=head1 DESCRIPTION

DBIx::DBSchema::ColGroup::Index objects represent the (non-unique) indices of a
database table (L<DBIx::DBSchema::Table>).  DBIx::DBSchema::ColGroup::Index
inherits from DBIx::DBSchema::ColGroup.

=head1 BUGS

Is this empty subclass needed?

=head1 SEE ALSO

L<DBIx::DBSchema::ColGroup>, L<DBIx::DBSchema::ColGroup::Unique>,
L<DBIx::DBSchema::Table>, L<DBIx::DBSchema>, L<FS::Record>

=cut

1;