mm
2 years ago
1 changed files with 14 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||||
|
from app import db |
||||
|
from flask_login import UserMixin |
||||
|
from werkzeug.security import generate_password_hash, check_password_hash |
||||
|
|
||||
|
class User(UserMixin, db.Model): |
||||
|
id = db.Column(db.Integer, primary_key=True) |
||||
|
username = db.Column(db.String(64), index=True, unique=True) |
||||
|
password_hash = db.Column(db.String(128)) |
||||
|
|
||||
|
def set_password(self, password): |
||||
|
self.password_hash = generate_password_hash(password) |
||||
|
|
||||
|
def check_password(self, password): |
||||
|
return check_password_hash(self.password_hash, password) |
Loading…
Reference in new issue