HifiPlanet-Website/hifi/api/database/migration_site_settings.sql
Maaxxs 95764039c7 Add admin-configurable website settings and VIN field to contact form
Adds a Website settings tab (hero image, phone, WhatsApp, email) that
feeds the navbar, footer and contact page via a new SiteSettingsContext,
redesigns the navbar with a bigger centered logo plus phone/WhatsApp/shop
links, and adds a VIN/chassis-number field to the contact form, admin
inbox and notification email.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-06 15:28:11 +02:00

13 lines
685 B
SQL

-- Kontaktdaten (Telefon/WhatsApp/E-Mail) und Startseiten-Hero-Bild admin-konfigurierbar machen,
-- sowie ein Fahrgestellnummer/FIN-Feld fuer Kontaktanfragen. Additiv, nichts wird geloescht.
-- Hinweis: Auf der Live-Seite reicht stattdessen ein Klick auf "Datenbankstruktur aktualisieren"
-- unter Admin-Panel -> Einstellungen -> Datenbank.
ALTER TABLE app_settings
ADD COLUMN IF NOT EXISTS phone VARCHAR(50) NULL,
ADD COLUMN IF NOT EXISTS whatsapp VARCHAR(50) NULL,
ADD COLUMN IF NOT EXISTS contact_email VARCHAR(150) NULL,
ADD COLUMN IF NOT EXISTS hero_image_path VARCHAR(255) NULL;
ALTER TABLE contact_requests
ADD COLUMN IF NOT EXISTS vin VARCHAR(50) NULL AFTER phone;