TT#25452 add call_id column for voicemail and faxserver

* add call_id for voicemail_spool
    * add call_id for voip_fax_journal

Change-Id: I08b7677945cc5d29e65c138f60e972feb1487198
changes/10/17310/2
Kirill Solomko 8 years ago
parent 910bec1ffe
commit 30553b2c47

@ -50,6 +50,8 @@ __PACKAGE__->add_columns(
{ data_type => "varchar", default_value => "", is_nullable => 1, size => 63 },
"recording",
{ data_type => "longblob", is_nullable => 1 },
"call_id",
{ data_type => "varchar", is_nullable => 1, size => 255 },
);
__PACKAGE__->set_primary_key("id");
@ -185,6 +187,12 @@ This module is a schema class for the NGCP database table "kamailio.voicemail_sp
data_type: 'longblob'
is_nullable: 1
=head2 call_id
data_type: 'varchar'
is_nullable: 1
size: 255
=head1 PRIMARY KEY
=over 4

@ -82,6 +82,8 @@ __PACKAGE__->add_columns(
{ data_type => "char", is_nullable => 0, size => 36 },
"callee_uuid",
{ data_type => "char", is_nullable => 0, size => 36 },
"call_id",
{ data_type => "varchar", is_nullable => 1, size => 255 },
);
__PACKAGE__->belongs_to(
"provisioning_voip_subscriber",
@ -252,6 +254,11 @@ This module is a schema class for the NGCP database table "provisioning.voip_fax
is_nullable: 1
size: 36
=head2 call_id
data_type: 'varchar'
is_nullable: 1
size: 255
=head1 PRIMARY KEY

Loading…
Cancel
Save