mirror of https://github.com/sipwise/db-schema.git
Change-Id: I052f44069105c0e4da0df61c351fc0cbd576801fchanges/76/22176/4
parent
0b494f959f
commit
fdca15c981
@ -0,0 +1,11 @@
|
||||
USE provisioning;
|
||||
|
||||
SET autocommit=0;
|
||||
|
||||
ALTER TABLE `provisioning`.`voip_cf_source_sets`
|
||||
DROP COLUMN `is_regex`;
|
||||
|
||||
ALTER TABLE `provisioning`.`voip_cf_bnumber_sets`
|
||||
DROP COLUMN `is_regex`;
|
||||
|
||||
COMMIT;
|
@ -0,0 +1,11 @@
|
||||
USE provisioning;
|
||||
|
||||
SET autocommit=0;
|
||||
|
||||
ALTER TABLE `provisioning`.`voip_cf_source_sets`
|
||||
ADD COLUMN `is_regex` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0';
|
||||
|
||||
ALTER TABLE `provisioning`.`voip_cf_bnumber_sets`
|
||||
ADD COLUMN `is_regex` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0';
|
||||
|
||||
COMMIT;
|
Loading…
Reference in new issue