summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/cable_sql.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-04-06 15:58:29 -0700
committerIvan Kohler <ivan@freeside.biz>2017-04-06 15:58:29 -0700
commitfd18b4fc626903d78e158183984a5e630206f305 (patch)
treea75492bb1d0ee8d5964f176b2e2a1f0f8f0b9ea3 /FS/FS/part_export/cable_sql.pm
parentd2c25edb0301d3d33671c74fc30dde8b1a9c6c77 (diff)
svc_cable SQL export, RT#75250
Diffstat (limited to 'FS/FS/part_export/cable_sql.pm')
-rw-r--r--FS/FS/part_export/cable_sql.pm23
1 files changed, 23 insertions, 0 deletions
diff --git a/FS/FS/part_export/cable_sql.pm b/FS/FS/part_export/cable_sql.pm
new file mode 100644
index 000000000..9310b0489
--- /dev/null
+++ b/FS/FS/part_export/cable_sql.pm
@@ -0,0 +1,23 @@
+package FS::part_export::cable_sql;
+use base qw( FS::part_export::sql_Common );
+
+use strict;
+use vars qw( %info );
+#use Tie::IxHash;
+
+#tie my %options, 'Tie::IxHash',
+# %{__PACKAGE__->sql_options},
+# #more options...
+#;
+
+%info = (
+ 'svc' => 'svc_cable',
+ 'desc' => 'Real time export of cable service to SQL databases',
+ 'options' => __PACKAGE__->sql_options, #\%options,
+ 'no_machine' => 1,
+ 'notes' => <<END
+Export cable service to SQL databases.
+END
+);
+
+1;