You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/10331.down

12 lines
360 B

USE provisioning;
DELETE FROM language_strings WHERE code='Client.Voip.ExistingWebUser';
-- delete unique constraint
ALTER TABLE voip_subscribers DROP INDEX webuser_dom_idx;
-- remove suffix set when adding above unique constraint
UPDATE voip_subscribers
SET webusername=REPLACE(webusername, CONCAT('-', id), '')
WHERE webusername LIKE CONCAT('%', '-', id)