init
This commit is contained in:
11
backend/app/models/config.py
Normal file
11
backend/app/models/config.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user