Files
sysPass/schemas/30018111901.sql
2018-11-19 00:16:32 +01:00

24 lines
505 B
SQL

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' $$