mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
12 lines
298 B
Python
12 lines
298 B
Python
import sqlalchemy
|
|
|
|
from .base import Base
|
|
|
|
|
|
class User(Base):
|
|
__tablename__ = 'users'
|
|
|
|
id = sqlalchemy.Column(sqlalchemy.Integer, primary_key=True)
|
|
user = sqlalchemy.Column(sqlalchemy.String(255), nullable=False)
|
|
password = sqlalchemy.Column(sqlalchemy.String(255), nullable=False)
|