DELIMITER $$ UPDATE CustomFieldType SET `text` = 'Text' WHERE name = 'text' $$ UPDATE CustomFieldType SET `text` = 'Password' WHERE name = 'password' $$ UPDATE CustomFieldType SET `text` = 'Date' WHERE name = 'date' $$ UPDATE CustomFieldType SET `text` = 'Number' WHERE name = 'number' $$ UPDATE CustomFieldType SET `text` = 'Email' WHERE name = 'email' $$ UPDATE CustomFieldType SET `text` = 'Phone' WHERE name = 'telephone' $$ UPDATE CustomFieldType SET `text` = 'Text Area' WHERE name = 'textarea' $$