diff --git a/backend/models.py b/backend/models.py index 12421df..5cba7c0 100644 --- a/backend/models.py +++ b/backend/models.py @@ -64,10 +64,6 @@ class Vertical(SQLModel, table=True): # Link to primary artist/band for this vertical primary_artist_id: Optional[int] = Field(default=None, foreign_key="artist.id") - # Theming - color: Optional[str] = Field(default=None, description="Hex color for branding") - emoji: Optional[str] = Field(default=None, description="Display emoji") - shows: List["Show"] = Relationship(back_populates="vertical") songs: List["Song"] = Relationship(back_populates="vertical") diff --git a/frontend/app/[vertical]/page.tsx b/frontend/app/[vertical]/page.tsx index 65216a2..3d712e9 100644 --- a/frontend/app/[vertical]/page.tsx +++ b/frontend/app/[vertical]/page.tsx @@ -21,10 +21,7 @@ export default function VerticalPage({ params }: Props) { return (
Explore setlists, rate performances, and connect with the {vertical.name} community.
diff --git a/frontend/app/[vertical]/shows/page.tsx b/frontend/app/[vertical]/shows/page.tsx index 0ef11b5..749207e 100644 --- a/frontend/app/[vertical]/shows/page.tsx +++ b/frontend/app/[vertical]/shows/page.tsx @@ -36,10 +36,7 @@ export default async function ShowsPage({ params }: Props) { return (