From 144162797552ad900abd160ef3d0d4c8afe9f9ea Mon Sep 17 00:00:00 2001
From: zhaoqingang <zhaoqg0118@163.com>
Date: 星期四, 07 十一月 2024 18:22:57 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.5.5:10010/r/rag-gateway

---
 app/models/user_model.py |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/app/models/user_model.py b/app/models/user_model.py
index 3a07ae2..5d5d51b 100644
--- a/app/models/user_model.py
+++ b/app/models/user_model.py
@@ -7,4 +7,10 @@
     __tablename__ = "user"
     id = Column(Integer, primary_key=True, index=True)
     username = Column(String(255), unique=True, index=True)
-    hashed_password = Column(String(255))
\ No newline at end of file
+    hashed_password = Column(String(255))
+    compellation = Column(String(255), nullable=False, default="")
+    phone = Column(String(255), nullable=False, default="")
+    email = Column(String(255), nullable=False, default="")
+    description = Column(String(255), nullable=False, default="")
+    ragflow_id = Column(String(32), unique=True, index=True)
+    bisheng_id = Column(Integer, unique=True, index=True)
\ No newline at end of file

--
Gitblit v1.8.0