From 87038032cdb20aea90b80d3fb6e356388761078e Mon Sep 17 00:00:00 2001 From: Nazarii Date: Sat, 13 Apr 2024 14:04:22 +0300 Subject: [PATCH] Fix postgres service github actions 3 --- db/models/user.py | 1 - 1 file changed, 1 deletion(-) diff --git a/db/models/user.py b/db/models/user.py index 24c42a2..890156a 100644 --- a/db/models/user.py +++ b/db/models/user.py @@ -12,4 +12,3 @@ class User(Base): is_active: Mapped[bool] = mapped_column(default=False) first_name: Mapped[str] = mapped_column(nullable=True) last_name: Mapped[str] = mapped_column(nullable=True) - avatar: Mapped[str] = mapped_column(nullable=True)