From e0cd9662c209f32a2dfaae6aad21d0535afbcd29 Mon Sep 17 00:00:00 2001 From: Hanzo_dev <2002samudiojohan@gmail.com> Date: Sun, 22 Feb 2026 10:56:23 -0500 Subject: [PATCH] Fix: Renamed taxis table to taxis_v2 to force schema update on Render and fix UndefinedColumn error --- backend/app/models/taxi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/models/taxi.py b/backend/app/models/taxi.py index f48a9e9..29f9f22 100644 --- a/backend/app/models/taxi.py +++ b/backend/app/models/taxi.py @@ -9,7 +9,7 @@ from sqlalchemy import DateTime, func class Taxi(SQLModel, table=True): """Taxi model representing an authorized taxi.""" - __tablename__ = "taxis" + __tablename__ = "taxis_v2" id: Optional[UUID] = Field(default_factory=uuid4, primary_key=True) owner_name: str