fix: remove first_name/last_name from Service model (was added by mistake)
This commit is contained in:
@@ -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))
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user