TT#22469 add lnp "type" columns

Change-Id: Ibe6adf5f17ddfcc26ec8eeaf519db4904d60d83b
changes/98/15698/7
Rene Krenn 8 years ago
parent 86b2864d3c
commit 27a4110cc6

@ -0,0 +1,3 @@
use billing;
alter table lnp_numbers drop column type;

@ -0,0 +1,3 @@
use billing;
alter table lnp_numbers add column type enum('fixed','mobile') default null;

@ -0,0 +1,4 @@
SET sql_log_bin=0;
use billing;
alter table cdr drop column source_lnp_type, drop column destination_lnp_type;

@ -0,0 +1,5 @@
SET sql_log_bin=0;
use accounting;
alter table cdr add column source_lnp_type enum('fixed','mobile') default null,
add column destination_lnp_type enum('fixed','mobile') default null;
Loading…
Cancel
Save