mirror of https://github.com/sipwise/db-schema.git
Change-Id: Iae63e999d79dd0b1c1c0ec3282e5adbf2eaf54c2changes/17/9517/2
parent
41526d4a17
commit
65ad84b9d4
@ -0,0 +1,4 @@
|
||||
use provisioning;
|
||||
|
||||
ALTER TABLE voip_fax_journal DROP caller_uuid,
|
||||
DROP callee_uuid;
|
@ -0,0 +1,7 @@
|
||||
use provisioning;
|
||||
|
||||
ALTER TABLE voip_fax_journal ADD caller_uuid char(36),
|
||||
ADD callee_uuid char(36),
|
||||
ADD index caller_uuid_idx (caller_uuid),
|
||||
ADD index callee_uuid_idx (callee_uuid);
|
||||
|
Loading…
Reference in new issue