diff --git a/db_scripts/diff/15227.down b/db_scripts/diff/15227.down new file mode 100644 index 00000000..3cbeeaeb --- /dev/null +++ b/db_scripts/diff/15227.down @@ -0,0 +1,7 @@ +use provisioning; +set autocommit=0; + +UPDATE voip_preferences SET contract_pref = 0 where attribute = 'emergency_prefix'; +UPDATE voip_preferences SET contract_pref = 0 where attribute = 'emergency_suffix'; + +commit; diff --git a/db_scripts/diff/15227.up b/db_scripts/diff/15227.up new file mode 100644 index 00000000..ca2da06f --- /dev/null +++ b/db_scripts/diff/15227.up @@ -0,0 +1,7 @@ +use provisioning; +set autocommit=0; + +UPDATE voip_preferences SET contract_pref = 1 where attribute = 'emergency_prefix'; +UPDATE voip_preferences SET contract_pref = 1 where attribute = 'emergency_suffix'; + +commit;