add user? new page? new web
This commit is contained in:
@@ -9,6 +9,8 @@ class User(Base):
|
||||
id = Column(UUID(as_uuid=True), primary_key=True, default=uuid.uuid4)
|
||||
first_name = Column(String(150), nullable=False)
|
||||
last_name = Column(String(150), nullable=False)
|
||||
username = Column(String(150), nullable=False, unique=True)
|
||||
hashed_password = Column(String(256), nullable=False)
|
||||
|
||||
__all__ = ["Base", "User"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user