mirror of https://github.com/sipwise/db-schema.git
Change-Id: Ibe6adf5f17ddfcc26ec8eeaf519db4904d60d83bchanges/98/15698/7
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…
Reference in new issue