12 lines
243 B
Python
12 lines
243 B
Python
from sqlalchemy import Column, String, Text
|
|
from sqlalchemy.sql import func
|
|
|
|
from app.database import Base
|
|
|
|
|
|
class Config(Base):
|
|
__tablename__ = "config"
|
|
|
|
key = Column(String, primary_key=True)
|
|
value = Column(Text, nullable=False)
|