mirror of
https://github.com/creyD/apilog.git
synced 2026-04-12 19:30:29 +02:00
7 lines
164 B
Python
7 lines
164 B
Python
from creyPY.fastapi.models.base import Base
|
|
from sqlalchemy import Column, String
|
|
|
|
|
|
class APIKey(Base):
|
|
note = Column(String(512), nullable=False, unique=True)
|