mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-11 08:16:03 +00:00
refactor: move entities
This commit is contained in:
13
pkg/entity/persistence/user.py
Normal file
13
pkg/entity/persistence/user.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
created_at = sqlalchemy.Column(sqlalchemy.DateTime, nullable=False)
|
||||
updated_at = sqlalchemy.Column(sqlalchemy.DateTime, nullable=False)
|
||||
Reference in New Issue
Block a user