web sitesi yönetimi

This commit is contained in:
2026-01-25 01:46:12 +03:00
parent 6e56b1e75f
commit 0fe49b5c96
15 changed files with 575 additions and 155 deletions

View File

@@ -0,0 +1,9 @@
-- Rename social_facebook to social_youtube if it exists
UPDATE site_contents
SET key = 'social_youtube'
WHERE key = 'social_facebook';
-- If social_facebook didn't exist, insert social_youtube (handling the case where it might already exist)
INSERT INTO site_contents (key, value, type, section)
VALUES ('social_youtube', '', 'text', 'contact')
ON CONFLICT (key) DO NOTHING;