mirror of https://github.com/sipwise/db-schema.git
Change-Id: I79b2619ec04973092a87a9c369e0bdf5701319c8changes/02/10702/1
parent
1910577a07
commit
196ae4af7f
@ -0,0 +1,7 @@
|
||||
use provisioning;
|
||||
|
||||
ALTER TABLE sms_journal
|
||||
DROP COLUMN coding,
|
||||
DROP COLUMN pcc_status,
|
||||
DROP COLUMN pcc_token,
|
||||
DROP KEY pcc_token_idx;
|
@ -0,0 +1,7 @@
|
||||
use provisioning;
|
||||
|
||||
ALTER TABLE sms_journal
|
||||
ADD COLUMN coding varchar(16) NOT NULL,
|
||||
ADD COLUMN pcc_status enum('none','pending','complete','failed') NOT NULL DEFAULT 'none',
|
||||
ADD COLUMN pcc_token varchar(64) NOT NULL DEFAULT '',
|
||||
ADD KEY pcc_token_idx(id, pcc_token, pcc_status);
|
Loading…
Reference in new issue