summaryrefslogtreecommitdiff
path: root/site_perl/dbdef_index.pm
diff options
context:
space:
mode:
Diffstat (limited to 'site_perl/dbdef_index.pm')
-rw-r--r--site_perl/dbdef_index.pm43
1 files changed, 43 insertions, 0 deletions
diff --git a/site_perl/dbdef_index.pm b/site_perl/dbdef_index.pm
new file mode 100644
index 000000000..2097db1ea
--- /dev/null
+++ b/site_perl/dbdef_index.pm
@@ -0,0 +1,43 @@
+package FS::dbdef_index;
+
+use strict;
+use vars qw(@ISA);
+use FS::dbdef_colgroup;
+
+@ISA=qw(FS::dbdef_colgroup);
+
+=head1 NAME
+
+FS::dbdef_unique.pm - Index object
+
+=head1 SYNOPSIS
+
+ use FS::dbdef_index;
+
+ # see FS::dbdef_colgroup methods
+
+=head1 DESCRIPTION
+
+FS::dbdef_unique objects represent the (non-unique) indices of a table
+(L<FS::dbdef_table>). FS::dbdef_unique inherits from FS::dbdef_colgroup.
+
+=head1 BUGS
+
+Is this empty subclass needed?
+
+=head1 SEE ALSO
+
+L<FS::dbdef_colgroup>, L<FS::dbdef_record>, L<FS::Record>
+
+=head1 HISTORY
+
+class for dealing with index definitions
+
+ivan@sisd.com 98-apr-19
+
+pod ivan@sisd.com 98-sep-24
+
+=cut
+
+1;
+