From 9f04d12a02b18749df9525bd3007e6e41ef7c124 Mon Sep 17 00:00:00 2001 From: Ricel Leite Date: Wed, 18 Feb 2026 23:14:08 -0300 Subject: [PATCH] fix: add email_verified and avatar_url fields to User model --- app/models/user.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/user.py b/app/models/user.py index af1afdc..f119692 100644 --- a/app/models/user.py +++ b/app/models/user.py @@ -11,8 +11,10 @@ class User(Base): email = Column(String(255), unique=True, index=True, nullable=False) hashed_password = Column(String(255), nullable=False) full_name = Column(String(255)) + avatar_url = Column(String(500)) is_active = Column(Boolean, default=True) is_superuser = Column(Boolean, default=False) + email_verified = Column(Boolean, default=False) created_at = Column(DateTime, default=datetime.utcnow) last_login = Column(DateTime)