session monitor updates
[freeside.git] / FS / FS / dbdef_unique.pm
1 package FS::dbdef_unique;
2
3 use strict;
4 use vars qw(@ISA);
5 use FS::dbdef_colgroup;
6
7 @ISA=qw(FS::dbdef_colgroup);
8
9 =head1 NAME
10
11 FS::dbdef_unique.pm - Unique object
12
13 =head1 SYNOPSIS
14
15   use FS::dbdef_unique;
16
17   # see FS::dbdef_colgroup methods
18
19 =head1 DESCRIPTION
20
21 FS::dbdef_unique objects represent the unique indices of a database table
22 (L<FS::dbdef_table>).  FS::dbdef_unique inherits from FS::dbdef_colgroup.
23
24 =head1 BUGS
25
26 Is this empty subclass needed?
27
28 =head1 SEE ALSO
29
30 L<FS::dbdef_colgroup>, L<FS::dbdef_record>, L<FS::Record>
31
32 =cut
33
34 1;
35
36