
- Set up FastAPI project structure with modular architecture - Create comprehensive database models for users, properties, messages, notifications, and payments - Implement JWT-based authentication with role-based access control (Seeker, Agent, Landlord, Admin) - Build property listings CRUD with advanced search and filtering capabilities - Add dedicated affordable housing endpoints for Nigerian market focus - Create real-time messaging system between users - Implement admin dashboard with property approval workflow and analytics - Add notification system for user alerts - Integrate Paystack payment gateway for transactions - Set up SQLite database with Alembic migrations - Include comprehensive health check and API documentation - Add proper error handling and validation throughout - Follow FastAPI best practices with Pydantic schemas and dependency injection
34 lines
1.5 KiB
Python
34 lines
1.5 KiB
Python
from sqlalchemy import Column, Integer, String, Boolean, DateTime, Enum
|
|
from sqlalchemy.sql import func
|
|
from sqlalchemy.orm import relationship
|
|
import enum
|
|
from app.db.base import Base
|
|
|
|
|
|
class UserRole(str, enum.Enum):
|
|
SEEKER = "seeker"
|
|
AGENT = "agent"
|
|
LANDLORD = "landlord"
|
|
ADMIN = "admin"
|
|
|
|
|
|
class User(Base):
|
|
__tablename__ = "users"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
username = Column(String(50), unique=True, index=True, nullable=False)
|
|
email = Column(String(100), unique=True, index=True, nullable=False)
|
|
phone_number = Column(String(20), unique=True, index=True, nullable=False)
|
|
hashed_password = Column(String(128), nullable=False)
|
|
role = Column(Enum(UserRole), default=UserRole.SEEKER, nullable=False)
|
|
is_verified = Column(Boolean, default=False)
|
|
is_active = Column(Boolean, default=True)
|
|
date_joined = Column(DateTime(timezone=True), server_default=func.now())
|
|
updated_at = Column(DateTime(timezone=True), onupdate=func.now())
|
|
|
|
profile = relationship("Profile", back_populates="user", uselist=False)
|
|
property_listings = relationship("PropertyListing", back_populates="owner")
|
|
sent_messages = relationship("Message", foreign_keys="Message.sender_id", back_populates="sender")
|
|
received_messages = relationship("Message", foreign_keys="Message.receiver_id", back_populates="receiver")
|
|
notifications = relationship("Notification", back_populates="user")
|
|
payments = relationship("Payment", back_populates="user") |