Skip to content

Commit

Permalink
removed-unique-pass-constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
workaryangupta committed Mar 26, 2024
1 parent e50e258 commit 2e52f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mslib/mscolab/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class User(db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True) # noqa: A003
username = db.Column(db.String(255))
emailid = db.Column(db.String(255), unique=True)
password = db.Column(db.String(255), unique=True)
password = db.Column(db.String(255))
registered_on = db.Column(AwareDateTime, nullable=False)
confirmed = db.Column(db.Boolean, nullable=False, default=False)
confirmed_on = db.Column(AwareDateTime, nullable=True)
Expand Down

0 comments on commit 2e52f00

Please sign in to comment.