Option to disable the charging of the setup fee while a package is suspended.
[freeside.git] / install / 5.005 / DBIx-DBSchema-0.23-5.005kludge / DBSchema / ColGroup / Index.pm
1 package DBIx::DBSchema::ColGroup::Index;
2
3 use strict;
4 use vars qw(@ISA);
5 use DBIx::DBSchema::ColGroup;
6
7 @ISA=qw(DBIx::DBSchema::ColGroup);
8
9 =head1 NAME
10
11 DBIx::DBSchema::ColGroup::Index - Index column group object
12
13 =head1 SYNOPSIS
14
15   use DBIx::DBSchema::ColGroup::Index;
16
17     # see DBIx::DBSchema::ColGroup methods
18
19 =head1 DESCRIPTION
20
21 DBIx::DBSchema::ColGroup::Index objects represent the (non-unique) indices of a
22 database table (L<DBIx::DBSchema::Table>).  DBIx::DBSchema::ColGroup::Index
23 inherits from DBIx::DBSchema::ColGroup.
24
25 =head1 BUGS
26
27 Is this empty subclass needed?
28
29 =head1 SEE ALSO
30
31 L<DBIx::DBSchema::ColGroup>, L<DBIx::DBSchema::ColGroup::Unique>,
32 L<DBIx::DBSchema::Table>, L<DBIx::DBSchema>, L<FS::Record>
33
34 =cut
35
36 1;
37