Packages now support an optional icon, a short tagline, and an "empfohlen" flag, all editable in Admin > Pakete. The model page switches from a plain stacked list to a responsive grid where the featured package gets a highlighted border, badge, and bolder CTA — fixes the tiers looking inconsistent when only some packages had bullet content. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
9 lines
500 B
SQL
9 lines
500 B
SQL
-- Design-Felder pro Paket (Icon, Slogan, "Empfohlen"-Hervorhebung) fuer die
|
|
-- Pakete-Karten auf der Modell-Seite. Additiv, nichts wird geloescht.
|
|
-- Hinweis: Auf der Live-Seite reicht stattdessen ein Klick auf "Datenbankstruktur aktualisieren"
|
|
-- unter Admin-Panel -> Einstellungen -> Datenbank.
|
|
|
|
ALTER TABLE packages
|
|
ADD COLUMN IF NOT EXISTS icon_name VARCHAR(100) NULL,
|
|
ADD COLUMN IF NOT EXISTS tagline VARCHAR(150) NULL,
|
|
ADD COLUMN IF NOT EXISTS is_featured TINYINT(1) NOT NULL DEFAULT 0;
|