diff --git a/app/models.py b/app/models.py index af7e332..9506b41 100644 --- a/app/models.py +++ b/app/models.py @@ -52,8 +52,6 @@ class Service(Base): icon_path: Mapped[str] = mapped_column(Text, default="") active: Mapped[bool] = mapped_column(Boolean, default=True) warm_pool_size: Mapped[int] = mapped_column(Integer, default=0) - first_name: Mapped[str] = mapped_column(String(64), default="") - last_name: Mapped[str] = mapped_column(String(64), default="") created_at: Mapped[dt.datetime] = mapped_column(DateTime(timezone=True), default=lambda: dt.datetime.now(dt.timezone.utc))