Skip to content

Commit

Permalink
Remove email column from User
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Jul 11, 2023
1 parent 37a9948 commit 8c3b189
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion plugins/auth/fps_auth/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class OAuthAccount(SQLAlchemyBaseOAuthAccountTableUUID, Base):

class User(SQLAlchemyBaseUserTableUUID, Base):
anonymous = Column(Boolean, default=True, nullable=False)
email = Column(String(length=32), nullable=False, unique=True)
username = Column(String(length=32), nullable=False, unique=True)
name = Column(String(length=32), default="")
display_name = Column(String(length=32), default="")
Expand Down

0 comments on commit 8c3b189

Please sign in to comment.