bab702a010
Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/9d256101-34b6-4861-a8cf-7f86f32b54d5 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
24 lines
763 B
Python
24 lines
763 B
Python
from app.core.database import Base
|
|
from sqlalchemy import Boolean, Column, Integer, String
|
|
from sqlalchemy.orm import relationship
|
|
|
|
|
|
class User(Base):
|
|
"""User model"""
|
|
|
|
__tablename__ = "users"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
email = Column(String, unique=True, index=True, nullable=False)
|
|
hashed_password = Column(String, nullable=False)
|
|
is_active = Column(Boolean, default=True)
|
|
is_superuser = Column(Boolean, default=False)
|
|
is_verified = Column(Boolean, default=False)
|
|
|
|
# Additional fields
|
|
full_name = Column(String, nullable=True)
|
|
organization = Column(String, nullable=True)
|
|
|
|
# Relationships
|
|
user_domains = relationship("UserDomain", back_populates="user", cascade="all, delete-orphan")
|