sqlalchemy-utils

    0熱度

    1回答

    我有一個Users表與password列這樣定義: password | text | not null 而且一SQLAlchemy的模型這樣定義: password = db.Column(PasswordType(schemes=['bcrypt'], max_length=128), nullable=False) 我可以成功地插入一行使用此型號: user = Users(first_na