[freeside-commits] freeside/FS/FS Schema.pm, 1.185, 1.186 Mason.pm, 1.25, 1.26
Ivan,,,
ivan at wavetail.420.am
Mon Jan 25 09:41:33 PST 2010
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv30206/FS/FS
Modified Files:
Schema.pm Mason.pm
Log Message:
initial svc_pbx implementation, RT#7051
Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -d -r1.185 -r1.186
--- Schema.pm 31 Dec 2009 07:16:54 -0000 1.185
+++ Schema.pm 25 Jan 2010 17:41:31 -0000 1.186
@@ -2612,6 +2612,20 @@
'unique' => [ [ 'pkgnum', 'refnum' ] ],
'index' => [ [ 'pkgnum' ], [ 'refnum' ] ],
},
+
+ 'svc_pbx' => {
+ 'columns' => [
+ 'svcnum', 'int', '', '', '', '',
+ 'id', 'int', 'NULL', '', '', '',
+ 'title', 'varchar', 'NULL', $char_d, '', '',
+ 'max_extensions', 'int', 'NULL', '', '', '',
+ ],
+ 'primary_key' => 'svcnum',
+ 'unique' => [],
+ 'index' => [ [ 'id' ] ],
+ },
+
+
# name type nullability length default local
#'new_table' => {
Index: Mason.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Mason.pm,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- Mason.pm 21 Jan 2010 01:25:22 -0000 1.25
+++ Mason.pm 25 Jan 2010 17:41:31 -0000 1.26
@@ -226,6 +226,7 @@
use FS::cust_category;
use FS::prospect_main;
use FS::contact;
+ use FS::svc_pbx;
# Sammath Naur
if ( $FS::Mason::addl_handler_use ) {
More information about the freeside-commits
mailing list