| DBIx-DBSchema documentation | Contained in the DBIx-DBSchema distribution. |
DBIx::DBSchema::ColGroup::Index - Index column group object
use DBIx::DBSchema::ColGroup::Index;
# see DBIx::DBSchema::ColGroup methods
This class is deprecated and included for backwards-compatibility only. See DBIx::DBSchema::Index for the current class used to store unique and non-unique indices.
DBIx::DBSchema::ColGroup::Index objects represent the (non-unique) indices of a database table (DBIx::DBSchema::Table). DBIx::DBSchema::ColGroup::Index inherits from DBIx::DBSchema::ColGroup.
| DBIx-DBSchema documentation | Contained in the DBIx-DBSchema distribution. |
package DBIx::DBSchema::ColGroup::Index; use strict; use vars qw(@ISA); use DBIx::DBSchema::ColGroup; @ISA=qw(DBIx::DBSchema::ColGroup);
1;