10 lines
403 B
SQL
10 lines
403 B
SQL
-- Rename social_twitter to social_tiktok if it exists
|
|
UPDATE site_contents
|
|
SET key = 'social_tiktok'
|
|
WHERE key = 'social_twitter';
|
|
|
|
-- If social_twitter didn't exist, insert social_tiktok (handling the case where it might already exist to avoid unique constraint error)
|
|
INSERT INTO site_contents (key, value, type, section)
|
|
VALUES ('social_tiktok', '', 'text', 'contact')
|
|
ON CONFLICT (key) DO NOTHING;
|