36 lines
1.5 KiB
Python
36 lines
1.5 KiB
Python
import uuid
|
|
from sqlalchemy import Column, String, Boolean, Date, DateTime, func, ForeignKey
|
|
from sqlalchemy.dialects.postgresql import UUID
|
|
from sqlalchemy.orm import relationship
|
|
from app.config.database import Base
|
|
|
|
class Tenant(Base):
|
|
__tablename__ = "tenants"
|
|
|
|
id = Column(UUID(as_uuid=True), primary_key=True, default=uuid.uuid4, index=True)
|
|
tenant_name = Column(String, unique=True, nullable=False, index=True)
|
|
tenant_domain = Column(String, unique=True, nullable=False, index=True)
|
|
tenant_logo_url = Column(String, nullable=True)
|
|
is_active = Column(Boolean, default=True, nullable=False)
|
|
plan_id = Column(UUID(as_uuid=True), ForeignKey("subscription_plans.id"), nullable=True, index=True)
|
|
start_date = Column(Date, nullable=True)
|
|
end_date = Column(Date, nullable=True)
|
|
status = Column(String, nullable=False, default="ACTIVE", index=True)
|
|
|
|
created_at = Column(DateTime(timezone=True), server_default=func.now())
|
|
updated_at = Column(
|
|
DateTime(timezone=True), onupdate=func.now(), server_default=func.now()
|
|
)
|
|
|
|
# Relationships
|
|
users = relationship("User", back_populates="tenant", cascade="all, delete-orphan")
|
|
roles = relationship("Role", back_populates="tenant", cascade="all, delete-orphan")
|
|
tenant_modules = relationship("TenantModule", back_populates="tenant", cascade="all, delete-orphan")
|
|
plan = relationship("SubscriptionPlan", back_populates="tenants")
|
|
|
|
@property
|
|
def tenant_id(self):
|
|
return self.id
|
|
|
|
def __repr__(self):
|
|
return f"<Tenant {self.tenant_name}>" |