summaryrefslogtreecommitdiff
path: root/FS/FS/h_svc_circuit.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-03-19 16:02:57 -0700
committerMark Wells <mark@freeside.biz>2015-03-19 16:03:34 -0700
commit61584eb8ac577096b12a43d375e99a2df7a09622 (patch)
treee08b3959c30b55e1a023dd158903b39ac3206bb4 /FS/FS/h_svc_circuit.pm
parent4a826597546477c5f3a6857d1851721568858403 (diff)
add h_svc_circuit.pm, needed for h_labels to work, #34107, from #23879
Diffstat (limited to 'FS/FS/h_svc_circuit.pm')
-rw-r--r--FS/FS/h_svc_circuit.pm33
1 files changed, 33 insertions, 0 deletions
diff --git a/FS/FS/h_svc_circuit.pm b/FS/FS/h_svc_circuit.pm
new file mode 100644
index 000000000..2a84a7aa3
--- /dev/null
+++ b/FS/FS/h_svc_circuit.pm
@@ -0,0 +1,33 @@
+package FS::h_svc_circuit;
+
+use strict;
+use vars qw( @ISA );
+use FS::h_Common;
+use FS::svc_circuit;
+
+@ISA = qw( FS::h_Common FS::svc_circuit );
+
+sub table { 'h_svc_circuit' };
+
+=head1 NAME
+
+FS::h_svc_circuit - Historical telecom circuit service objects
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+An FS::h_svc_circuit object represents a historical circuit service.
+FS::h_svc_circuit inherits from FS::h_Common and FS::svc_circuit.
+
+=head1 BUGS
+
+=head1 SEE ALSO
+
+L<FS::h_Common>, L<FS::svc_circuit>, L<FS::Record>, schema.html from the base
+documentation.
+
+=cut
+
+1;
+