init. project
This commit is contained in:
18
rag-web-ui/backend/app/models/api_key.py
Normal file
18
rag-web-ui/backend/app/models/api_key.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from sqlalchemy import Column, Integer, String, Boolean, DateTime, ForeignKey, VARCHAR
|
||||
from sqlalchemy.orm import relationship
|
||||
from sqlalchemy.sql import func
|
||||
|
||||
from app.models.base import Base, TimestampMixin
|
||||
|
||||
class APIKey(Base, TimestampMixin):
|
||||
__tablename__ = "api_keys"
|
||||
|
||||
id = Column(Integer, primary_key=True, index=True)
|
||||
key = Column(VARCHAR(128), unique=True, index=True, nullable=False)
|
||||
name = Column(String(255), nullable=False)
|
||||
user_id = Column(Integer, ForeignKey("users.id"), nullable=False)
|
||||
is_active = Column(Boolean, default=True, nullable=False)
|
||||
last_used_at = Column(DateTime(timezone=True), nullable=True)
|
||||
|
||||
# Relationships
|
||||
user = relationship("User", back_populates="api_keys")
|
||||
Reference in New Issue
Block a user