diff --git a/db_scripts/diff/13830.down b/db_scripts/diff/13830.down new file mode 100644 index 00000000..5ddb2890 --- /dev/null +++ b/db_scripts/diff/13830.down @@ -0,0 +1 @@ +DELETE FROM provisioning.voip_preferences where attribute='mobile_push_expiry'; diff --git a/db_scripts/diff/13830.up b/db_scripts/diff/13830.up new file mode 100644 index 00000000..c86e90de --- /dev/null +++ b/db_scripts/diff/13830.up @@ -0,0 +1,7 @@ +use provisioning + +select id into @pid from voip_preference_groups where name = 'Internals'; + +INSERT INTO voip_preferences (attribute, type, dom_pref, usr_pref, peer_pref, data_type, + max_occur, description, modify_timestamp, voip_preference_groups_id) VALUES('mobile_push_expiry', + 1, 1, 1, 0, 'int', 1, 'The expiry interval of sent push messages, after expiration of which the client should treat is as outdated and ignore.', '1970-01-01 00:00:00', @pid)